Skip to content

Commit

Permalink
fix: 修复命令参数有误
Browse files Browse the repository at this point in the history
  • Loading branch information
HalfSweet committed Dec 18, 2023
1 parent 9439674 commit 692e331
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,13 @@ jobs:
if: runner.os == 'Windows'
run : |
mkdir -p ${{ github.workspace }}/release
7z a -tzip -p ${{ github.workspace }}/release/AirISP-${{ matrix.target.file_name }}.${{ github.ref_name }}.zip target/${{ matrix.target.name }}/release/AirISP-next.exe
7z a -tzip ${{ github.workspace }}/release/AirISP-${{ matrix.target.file_name }}.${{ github.ref_name }}.zip target/${{ matrix.target.name }}/release/AirISP-next.exe
- name: Package
if: runner.os != 'Windows'
run : |
mkdir -p ${{ github.workspace }}/release
zip -p ${{ github.workspace }}/release/AirISP-${{ matrix.target.file_name }}.${{ github.ref_name }}.zip target/${{ matrix.target.name }}/release/AirISP-next
zip ${{ github.workspace }}/release/AirISP-${{ matrix.target.file_name }}.${{ github.ref_name }}.zip target/${{ matrix.target.name }}/release/AirISP-next
- name: Create release
uses: ncipollo/release-action@v1
Expand Down

0 comments on commit 692e331

Please sign in to comment.