Skip to content

Commit 589aaa3

Browse files
committed
stripe parent folder
1 parent ef1bbe4 commit 589aaa3

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
git push origin v${{ steps.get_version.outputs.VERSION }}
9191
- name: Create zip artifact
9292
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_*")
9494
- name: Create hash file
9595
run: |
9696
find src -type f -exec sha256sum {} + > ansible-link-${{ steps.get_version.outputs.VERSION }}.sha256

CHANGELOG.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
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

src/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = "2.0.4"
1+
VERSION = "2.0.5"
22

33
def get_version():
44
return VERSION

0 commit comments

Comments
 (0)