Skip to content
This repository has been archived by the owner on Feb 24, 2024. It is now read-only.

Commit

Permalink
ci: fix release
Browse files Browse the repository at this point in the history
  • Loading branch information
neko-para committed Oct 31, 2023
1 parent a509e1b commit 948fe93
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,17 @@ jobs:
tar jxvf ../assets/${NAME}/`ls ../assets/${NAME}`;
done
cd ..
find unpkg
- name: Compress zips
run: |
PKGS=`ls unpkg`;
mkdir -p release;
cd unpkg
for NAME in ${PKGS}; do
zip ../release/${NAME}.zip ${NAME}
zip -r ../release/${NAME}.zip ${NAME}
done
find release
cd ..
# - uses: softprops/action-gh-release@v1
# with:
# files: release/*.zip
- uses: softprops/action-gh-release@v1
with:
files: release/*.zip

0 comments on commit 948fe93

Please sign in to comment.