Skip to content

Commit b7948c2

Browse files
Download single artifact for notarization
1 parent 7a2552c commit b7948c2

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/publish-go-nightly-task.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ jobs:
8989
- name: Download artifacts
9090
uses: actions/download-artifact@v3
9191
with:
92-
name: ${{ env.ARTIFACT_NAME }}
93-
path: ${{ env.DIST_DIR }}
92+
name: ${{ env.DIST_DIR }}/${{ env.PACKAGE_FILENAME }}
93+
path: ${{ env.DIST_DIR }}/${{ env.PACKAGE_FILENAME }}
9494

9595
- name: Import Code-Signing Certificates
9696
env:
@@ -168,7 +168,7 @@ jobs:
168168
uses: actions/upload-artifact@v3
169169
with:
170170
if-no-files-found: error
171-
name: ${{ env.ARTIFACT_NAME }}
171+
name: ${{ env.DIST_DIR }}/${{ env.PACKAGE_FILENAME }}
172172
path: ${{ env.DIST_DIR }}/${{ env.PACKAGE_FILENAME }}
173173

174174
publish-nightly:

.github/workflows/release-go-task.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ jobs:
9494
- name: Download artifacts
9595
uses: actions/download-artifact@v3
9696
with:
97-
name: ${{ env.ARTIFACT_NAME }}
98-
path: ${{ env.DIST_DIR }}
97+
name: ${{ env.DIST_DIR }}/${{ env.PACKAGE_FILENAME }}
98+
path: ${{ env.DIST_DIR }}/${{ env.PACKAGE_FILENAME }}
9999

100100
- name: Import Code-Signing Certificates
101101
env:
@@ -173,7 +173,7 @@ jobs:
173173
uses: actions/upload-artifact@v3
174174
with:
175175
if-no-files-found: error
176-
name: ${{ env.ARTIFACT_NAME }}
176+
name: ${{ env.DIST_DIR }}/${{ env.PACKAGE_FILENAME }}
177177
path: ${{ env.DIST_DIR }}/${{ env.PACKAGE_FILENAME }}
178178

179179
create-release:

0 commit comments

Comments
 (0)