Skip to content

Commit

Permalink
fix: 修改release路径
Browse files Browse the repository at this point in the history
  • Loading branch information
HalfSweet committed Dec 31, 2023
1 parent 75564b7 commit bf8593e
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 @@ -84,7 +84,7 @@ jobs:
mkdir -p ${{ github.workspace }}/release
cd target/${{ matrix.target.name }}/release
cp AirISP-next.exe ${{ github.workspace }}/release
7z a -tzip ${{ github.workspace }}/release/AirISP-${{ github.ref_name }}-${{ matrix.target.file_name }}.zip target/${{ matrix.target.name }}/release
7z a -tzip ${{ github.workspace }}/AirISP-${{ github.ref_name }}-${{ matrix.target.file_name }}.zip ${{ github.workspace }}/release
- name: Package
if: runner.os != 'Windows'
Expand All @@ -93,7 +93,7 @@ jobs:
cd target/${{ matrix.target.name }}/release
chmod +x AirISP-next
cp AirISP-next ${{ github.workspace }}/release
tar zcvf ${{ github.workspace }}/AirISP-${{ github.ref_name }}-${{ matrix.target.file_name }}.tar.gz target/${{ matrix.target.name }}/release
tar zcvf ${{ github.workspace }}/AirISP-${{ github.ref_name }}-${{ matrix.target.file_name }}.tar.gz ${{ github.workspace }}/release
- name: Create Windows release
if: runner.os == 'Windows'
Expand Down

0 comments on commit bf8593e

Please sign in to comment.