Skip to content

Commit

Permalink
fix: fix file name change in build flow
Browse files Browse the repository at this point in the history
  • Loading branch information
benfdking committed May 7, 2024
1 parent b76fa8f commit 4c02236
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
shell: bash
run: |
cd target/${{ matrix.platform.target }}/release
zip -j quary-${{ env.VERSION }}-${{ matrix.platform.name }} ${{ matrix.platform.bin }}
zip -j ${{ matrix.platform.name }} ${{ matrix.platform.bin }}
mv ${{ matrix.platform.name }} ../../../
- name: Upload Release Asset
uses: softprops/action-gh-release@9d7c94cfd0a1f3ed45544c887983e9fa900f0564 # ratchet:softprops/action-gh-release@v2.0.4
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
shell: bash
run: |
cd target/${{ matrix.platform.target }}/release
zip -j quary-${{ env.VERSION }}-${{ matrix.platform.name }} ${{ matrix.platform.bin }}
zip -j ${{ matrix.platform.name }} ${{ matrix.platform.bin }}
mv ${{ matrix.platform.name }} ../../../
- name: Upload Release Asset
uses: softprops/action-gh-release@9d7c94cfd0a1f3ed45544c887983e9fa900f0564 # ratchet:softprops/action-gh-release@v2.0.4
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
- name: Package as archive
run: |
cd target/${{ matrix.platform.target }}/release
zip -j quary-${{ env.VERSION }}-${{ matrix.platform.name }} ${{ matrix.platform.bin }}
zip -j ${{ matrix.platform.name }} ${{ matrix.platform.bin }}
mv ${{ matrix.platform.name }} ../../../
- name: Notarize app bundle
timeout-minutes: 30
Expand Down

0 comments on commit 4c02236

Please sign in to comment.