Skip to content

Commit

Permalink
build(ci): Download build artifacts for macOS, Ubuntu, and Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
HashCookie committed May 26, 2024
1 parent 5e5cb99 commit 63b0403
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,18 @@ jobs:
needs: build
runs-on: ubuntu-latest
steps:
- name: 下载构建产物
- name: 下载 macOS 构建产物
uses: actions/download-artifact@v2
with:
name: electron-app-macos-latest

- name: 下载 Ubuntu 构建产物
uses: actions/download-artifact@v2
with:
name: electron-app-ubuntu-latest

- name: 下载 Windows 构建产物
uses: actions/download-artifact@v2
with:
name: electron-app-windows-latest

Expand All @@ -68,4 +74,4 @@ jobs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: dist/
asset_name: electron-app-${{ matrix.os }}.zip
asset_content_type: application/zip
asset_content_type: application/zip

0 comments on commit 63b0403

Please sign in to comment.