Skip to content

Commit

Permalink
7zコマンドが間違っていたので修正 (VOICEVOX#384)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiroshiba authored Jan 17, 2023
1 parent 8abd7d1 commit dc81c39
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,14 +158,9 @@ jobs:
CERT_PASSWORD: ${{ secrets.CERT_PASSWORD }}
- name: Archive artifact
shell: bash
if: (!contains(matrix.os , 'windows'))
run: |
cd artifact
zip -r "../${{ env.ASSET_NAME }}.zip" "${{ env.ASSET_NAME }}"
- name: Archive artifact (Windows)
if: contains(matrix.os, 'windows')
run: |
7z a "${{ env.ASSET_NAME }}.zip" "artifact/${{ env.ASSET_NAME }}"
7z a "../${{ env.ASSET_NAME }}.zip" "${{ env.ASSET_NAME }}"
- name: Upload to Release
if: env.VERSION != 'DEBUG' && env.SKIP_UPLOADING_RELEASE_ASSET == '0'
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit dc81c39

Please sign in to comment.