Skip to content

Commit

Permalink
fix: zipの拡張子がtar.gzになっていたので修正
Browse files Browse the repository at this point in the history
  • Loading branch information
cffnpwr committed Jun 26, 2024
1 parent 7c83ac3 commit 9e45619
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-win-gnu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- name: zip archive
id: zip
run: |
FILENAME=snails-machine-${{ inputs.version || steps.date.outputs.date }}-${{ steps.target.outputs.target }}.tar.gz
FILENAME=snails-machine-${{ inputs.version || steps.date.outputs.date }}-${{ steps.target.outputs.target }}.zip
zip -r -j ${FILENAME} target/${{ steps.target.outputs.target }}/release/snails-machine.exe
echo "filename=${FILENAME}" >> $GITHUB_OUTPUT
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-win-msvc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
- name: zip archive
id: zip
run: |
FILENAME=snails-machine-${{ inputs.version || steps.date.outputs.date }}-${{ steps.target.outputs.target }}.tar.gz
FILENAME=snails-machine-${{ inputs.version || steps.date.outputs.date }}-${{ steps.target.outputs.target }}.zip
zip -r -j ${FILENAME} target/${{ steps.target.outputs.target }}/release/snails-machine.exe
echo "filename=${FILENAME}" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 9e45619

Please sign in to comment.