Skip to content

Commit

Permalink
update build.yml, remove "_all" from script files
Browse files Browse the repository at this point in the history
  • Loading branch information
a8jan committed Aug 24, 2022
1 parent 2ea6fc8 commit 24b389e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
- name: Upload build artifact
uses: actions/upload-artifact@v3
with:
name: fujinet-pc-scripts_${{ steps.version.outputs.release }}_all
name: fujinet-pc-scripts_${{ steps.version.outputs.release }}
path: dist/**

build:
Expand Down Expand Up @@ -241,7 +241,7 @@ jobs:
- name: Zip release files
working-directory: release
run: |
for D in fujinet-pc-scripts_*_all; do zip -r ${D}.zip $D; tar -czvf ${D}.tar.gz $D; done
for D in fujinet-pc-scripts_*; do zip -r ${D}.zip $D; tar -czvf ${D}.tar.gz $D; done
for D in fujinet-pc-launcher_*windows*; do (cd $D; zip -r ../fujinet-pc-bundle_${D#fujinet-pc-launcher_}.zip *); done
- name: Release
Expand All @@ -251,6 +251,6 @@ jobs:
tag_name: release-${{ needs.scripts.outputs.release_version }}
draft: ${{ github.event.inputs.draftRelease }}
files: |
release/fujinet-pc-scripts_*_all.tar.gz
release/fujinet-pc-scripts_*_all.zip
release/fujinet-pc-scripts_*.tar.gz
release/fujinet-pc-scripts_*.zip
release/fujinet-pc-bundle_*.zip

0 comments on commit 24b389e

Please sign in to comment.