File tree Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 90
90
git push origin v${{ steps.get_version.outputs.VERSION }}
91
91
- name : Create zip artifact
92
92
run : |
93
- zip -r ansible-link-${{ steps.get_version.outputs.VERSION }}.zip src -x "*.pyc" "*__pycache__*" "*test_*"
93
+ (cd src && zip -r ../ ansible-link-${{ steps.get_version.outputs.VERSION }}.zip . -x "*.pyc" "*__pycache__*" "*test_*")
94
94
- name : Create hash file
95
95
run : |
96
96
find src -type f -exec sha256sum {} + > ansible-link-${{ steps.get_version.outputs.VERSION }}.sha256
Original file line number Diff line number Diff line change 1
- - Better path handling
2
- - Version bump of actions
3
- - Cleaner tests
4
- - ** BREAKING** ` /api/v<N> ` versioning pathing added for all endpoints
1
+ - HOTFIX stripe parent folder in zip
Original file line number Diff line number Diff line change 1
- VERSION = "2.0.4 "
1
+ VERSION = "2.0.5 "
2
2
3
3
def get_version ():
4
4
return VERSION
You can’t perform that action at this time.
0 commit comments