Skip to content

Commit

Permalink
fix: artifacts in release (#2016)
Browse files Browse the repository at this point in the history
  • Loading branch information
pengx17 committed Apr 18, 2023
1 parent f36d415 commit ba462fb
Showing 1 changed file with 18 additions and 11 deletions.
29 changes: 18 additions & 11 deletions .github/workflows/release-desktop-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,20 +147,27 @@ jobs:
release:
needs: make-distribution
runs-on: ubuntu-latest
strategy:
fail-fast: true
# all combinations: macos-latest x64, macos-latest arm64, windows-latest x64, ubuntu-latest x64
matrix:
spec:
- { os: ubuntu-latest, arch: x64 }
- { os: macos-latest, arch: x64 }
- { os: macos-latest, arch: arm64 }
- { os: windows-latest, arch: x64 }

steps:
- name: Download Artifacts
- name: Download Artifacts (macos-x64)
uses: actions/download-artifact@v3
with:
name: affine-${{ matrix.spec.os }}-${{ matrix.spec.arch }}-builds
name: affine-macos-x64-builds
path: ./
- name: Download Artifacts (macos-arm64)
uses: actions/download-artifact@v3
with:
name: affine-macos-arm64-builds
path: ./
- name: Download Artifacts (windows-x64)
uses: actions/download-artifact@v3
with:
name: affine-windows-x64-builds
path: ./
- name: Download Artifacts (linux-x64)
uses: actions/download-artifact@v3
with:
name: affine-linux-x64-builds
path: ./

- name: Create Release Draft
Expand Down

2 comments on commit ba462fb

@vercel
Copy link

@vercel vercel bot commented on ba462fb Apr 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on ba462fb Apr 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

affine-storybook – ./packages/component

affine-storybook-git-master-toeverything.vercel.app
affine-storybook.vercel.app
affine-storybook-toeverything.vercel.app

Please sign in to comment.