Skip to content

Commit

Permalink
Fixed that the version of upload-artifact
Browse files Browse the repository at this point in the history
Fixed that the version of upload-artifact did not match.
  • Loading branch information
noborus committed Apr 5, 2024
1 parent 6abed2b commit 66305f5
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 66305f5

Please sign in to comment.