Skip to content

Commit 03f18b7

Browse files
committed
fix: Fix release paths.
1 parent 1314e0c commit 03f18b7

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,11 @@ jobs:
147147
name: python-linux
148148
path: ./artifacts/linux
149149

150+
- name: Zip artifacts
151+
run: |
152+
zip -r ./artifacts/python-windows.zip ./artifacts/windows/python-windows
153+
zip -r ./artifacts/python-linux.zip ./artifacts/linux/python-linux
154+
150155
- name: Set up Node.js
151156
uses: actions/setup-node@v3
152157
with:

.releaserc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
{
99
"path": "@semantic-release/github",
1010
"assets": [
11-
"./artifacts/*"
11+
"./artifacts/python-linux.zip",
12+
"./artifacts/python-windows.zip"
1213
]
1314
}
1415
]

0 commit comments

Comments
 (0)