Skip to content

Commit

Permalink
Add build zip to release
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanhalliday committed Feb 13, 2024
1 parent 24e6d28 commit c9a0da3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,12 @@ jobs:
run: |
tag="${GITHUB_REF#refs/tags/}"
mkdir ${{ github.event.repository.name }}/
cp -t ${{ github.event.repository.name }}/ main.js manifest.json styles.css
zip -r "${{ github.event.repository.name }}-$tag.zip" ${{ github.event.repository.name }}/
gh release create "$tag" \
--title="$tag" \
--draft \
main.js manifest.json styles.css
main.js manifest.json styles.css \
"${{ github.event.repository.name }}-$tag.zip"

0 comments on commit c9a0da3

Please sign in to comment.