Skip to content

Commit

Permalink
Update zip in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
patuwwy committed Nov 14, 2023
1 parent 1c16d15 commit 40f554e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ jobs:
run: echo "::set-output name=version::$(jq -r .version app/manifest.json)"

- name: Zip subdirectory
run: zip -r ${{ env.RELEASE_ZIP_FILENAME }}-${{ steps.version.outputs.version }}.zip ./${{ env.SOURCE_SUBDIRECTORY }}/*
run: >
cd ${{ env.SOURCE_SUBDIRECTORY }}/* &&
zip -r ${{ env.RELEASE_ZIP_FILENAME }}-${{ steps.version.outputs.version }}.zip ./
- name: Create Release
id: create_release
Expand Down

0 comments on commit 40f554e

Please sign in to comment.