Skip to content

Commit

Permalink
chore: update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
chenfan0 committed Jul 2, 2024
1 parent af579aa commit d27db60
Showing 1 changed file with 18 additions and 21 deletions.
39 changes: 18 additions & 21 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,38 +43,38 @@ jobs:
# path: |
# dist/*.exe
# dist/*.dmg
- name: Archive Windows build artifacts
if: ${{ runner.os == 'Windows' }}
run: zip -r fideo-win-${{ env.VERSION }}.zip dist/fideo-${{ env.VERSION }}.exe
# - name: Archive Windows build artifacts
# if: ${{ runner.os == 'Windows' }}
# run: zip -r fideo-win-${{ env.VERSION }}.zip dist/fideo-${{ env.VERSION }}.exe

- name: Archive macOS build artifacts (x64)
if: ${{ runner.os == 'macOS' }}
run: tar -czf fideo-mac-x64-${{ env.VERSION }}.tar.gz dist/fideo-${{ env.VERSION }}-x64.dmg
# - name: Archive macOS build artifacts (x64)
# if: ${{ runner.os == 'macOS' }}
# run: tar -czf fideo-mac-x64-${{ env.VERSION }}.tar.gz dist/fideo-${{ env.VERSION }}-x64.dmg

- name: Archive macOS build artifacts (arm)
if: ${{ runner.os == 'macOS' }}
run: tar -czf fideo-mac-arm-${{ env.VERSION }}.tar.gz dist/fideo-${{ env.VERSION }}-arm64.dmg
# - name: Archive macOS build artifacts (arm)
# if: ${{ runner.os == 'macOS' }}
# run: tar -czf fideo-mac-arm-${{ env.VERSION }}.tar.gz dist/fideo-${{ env.VERSION }}-arm64.dmg

- name: Upload Windows build artifact
if: ${{ runner.os == 'Windows' }}
uses: actions/upload-artifact@v2
with:
name: build-win-${{ env.VERSION }}
path: fideo-win-${{ env.VERSION }}.zip
path: dist/fideo-${{ env.VERSION }}.exe

- name: Upload macOS build artifacts (x64)
if: ${{ runner.os == 'macOS' }}
uses: actions/upload-artifact@v2
with:
name: build-mac-x64-${{ env.VERSION }}
path: fideo-mac-x64-${{ env.VERSION }}.tar.gz
path: dist/fideo-${{ env.VERSION }}-x64.dmg

- name: Upload macOS build artifacts (arm)
if: ${{ runner.os == 'macOS' }}
uses: actions/upload-artifact@v2
with:
name: build-mac-arm-${{ env.VERSION }}
path: fideo-mac-arm-${{ env.VERSION }}.tar.gz
path: dist/fideo-${{ env.VERSION }}-arm64.dmg

release:
needs: build
Expand Down Expand Up @@ -118,26 +118,23 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: fideo-win-${{ env.VERSION }}.zip
asset_name: fideo-win-${{ env.VERSION }}.zip
asset_content_type: application/zip
asset_path: fideo-${{ env.VERSION }}.exe
asset_name: fideo-${{ env.VERSION }}.exe

- name: Upload macOS Release Asset (x64)
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: fideo-mac-x64-${{ env.VERSION }}.tar.gz
asset_name: fideo-mac-x64-${{ env.VERSION }}.tar.gz
asset_content_type: application/gzip
asset_path: dist/fideo-${{ env.VERSION }}-x64.dmg
asset_name: fideo-${{ env.VERSION }}-x64.dmg

- name: Upload macOS Release Asset (arm)
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: fideo-mac-arm-${{ env.VERSION }}.tar.gz
asset_name: fideo-mac-arm-${{ env.VERSION }}.tar.gz
asset_content_type: application/gzip
asset_path: dist/fideo-${{ env.VERSION }}-arm64.dmg
asset_name: dist/fideo-${{ env.VERSION }}-arm64.dmg

0 comments on commit d27db60

Please sign in to comment.