Skip to content

Commit d40cea9

Browse files
authored
Merge pull request #276 from noborus/fix-download-artifact
Fixed that the version of upload-artifact
2 parents 6abed2b + 66305f5 commit d40cea9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,10 @@ jobs:
8787
steps:
8888
- uses: actions/checkout@v4
8989

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

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

0 commit comments

Comments
 (0)