Skip to content

Commit

Permalink
fix: release.yaml syntax error (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
wre232114 authored Feb 21, 2023
1 parent 66837a8 commit 1f16b70
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,31 +24,31 @@ jobs:
node-version: 16.x

- uses: actions/download-artifact@v3
id: download
id: download-linux-x64-gnu
with:
name: ${{ github.sha }}-linux-x64-gnu
path: ./packages/core/npm/linux-x64-gnu
- name: List Files
run: ls -l ./packages/core/npm/linux-x64-gnu

- uses: actions/download-artifact@v3
id: download
id: download-darwin-x64
with:
name: ${{ github.sha }}-darwin-x64
path: ./packages/core/npm/darwin-x64
- name: List Files
run: ls -l ./packages/core/npm/darwin-x64

- uses: actions/download-artifact@v3
id: download
id: download-win32-x64-msvc
with:
name: ${{ github.sha }}-win32-x64-msvc
path: ./packages/core/npm/win32-x64-msvc
- name: List Files
run: ls -l ./packages/core/npm/win32-x64-msvc

- uses: actions/download-artifact@v3
id: download
id: download-darwin-arm64
with:
name: ${{ github.sha }}-darwin-arm64
path: ./packages/core/npm/darwin-arm64
Expand Down

0 comments on commit 1f16b70

Please sign in to comment.