Skip to content

Commit

Permalink
zip to folder
Browse files Browse the repository at this point in the history
  • Loading branch information
K-Meech committed Sep 11, 2023
1 parent 0216317 commit 098187d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/zip-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,15 @@ jobs:

- name: Check out repository code
uses: actions/checkout@v3

- name: Make sub-folder for addon files
run: mkdir image-matcher

- name: Move python files to folder
run: mv *.py ./image-matcher

- name: Only zip python files
run: zip image-matcher.zip *.py
- name: Zip addon folder
run: zip -r image-matcher.zip image-matcher

- name: Release
uses: softprops/action-gh-release@v1
Expand Down
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
bl_info = {
"name": "Image Matcher",
"author": "Kimberly Meechan",
"version": (1, 0, 1),
"version": (1, 0, 2),
"blender": (3, 6, 2),
"location": "Clip Editor > Tools > Solve > Image Matcher",
"description": "Matches 2D images to the 3D model (builds on RT Studio's Camera Pnpoint plugin)",
Expand Down

0 comments on commit 098187d

Please sign in to comment.