Skip to content

Commit cf3985b

Browse files
committed
feat: upload .plugin and .skill artifacts in release workflow
1 parent 2b302e7 commit cf3985b

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,13 @@ jobs:
1717
chmod +x scripts/build-release.sh
1818
./scripts/build-release.sh
1919
20-
- name: Upload zip to release
20+
- name: Upload release artifacts
2121
env:
2222
GH_TOKEN: ${{ github.token }}
2323
TAG_NAME: ${{ github.event.release.tag_name }}
24-
run: gh release upload "$TAG_NAME" dist/normalpowers-v*.zip --clobber
24+
run: |
25+
gh release upload "$TAG_NAME" \
26+
dist/normalpowers-v*.zip \
27+
dist/normalpowers-v*.plugin \
28+
dist/normalpowers-v*.skill \
29+
--clobber

0 commit comments

Comments
 (0)