Skip to content

Commit

Permalink
Fix broken release process (#337)
Browse files Browse the repository at this point in the history
* Revert to upload-artifact@v3 (#1)

* Try upgrade to actions/upload-artifact@v4 again
  • Loading branch information
kfcampbell committed Jan 23, 2024
1 parent adfb22c commit fa39d9f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- run: ${{ matrix.build }}
- uses: actions/upload-artifact@v4
with:
name: build-artifacts
name: build-artifacts-${{ matrix.os }}
path: dist
release:
name: release
Expand All @@ -54,8 +54,9 @@ jobs:
- uses: actions/download-artifact@v4
id: download
with:
name: build-artifacts
pattern: build-artifacts-*
path: dist
merge-multiple: true
- run: ls dist
- run: npx semantic-release
env:
Expand Down

0 comments on commit fa39d9f

Please sign in to comment.