Skip to content

Commit

Permalink
Merge pull request #276 from noborus/fix-download-artifact
Browse files Browse the repository at this point in the history
Fixed that the version of upload-artifact
  • Loading branch information
noborus authored Apr 5, 2024
2 parents 6abed2b + 66305f5 commit d40cea9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- { uses: actions/download-artifact@v3, with: { name: xgo-build-zip, path: dist/ } }
- { uses: actions/download-artifact@v3, with: { name: trdsql-linux-amd64, path: dist/ } }
- { uses: actions/download-artifact@v3, with: { name: trdsql-darwin-amd64, path: dist/ } }
- { uses: actions/download-artifact@v3, with: { name: trdsql-darwin-arm64, path: dist/ } }
- { uses: actions/download-artifact@v4, with: { name: xgo-build-zip, path: dist/ } }
- { uses: actions/download-artifact@v4, with: { name: trdsql-linux-amd64, path: dist/ } }
- { uses: actions/download-artifact@v4, with: { name: trdsql-darwin-amd64, path: dist/ } }
- { uses: actions/download-artifact@v4, with: { name: trdsql-darwin-arm64, path: dist/ } }

- name: Upload Asset to Release with a wildcard
uses: softprops/action-gh-release@v2
Expand Down

0 comments on commit d40cea9

Please sign in to comment.