File tree Expand file tree Collapse file tree 1 file changed +16
-8
lines changed
Expand file tree Collapse file tree 1 file changed +16
-8
lines changed Original file line number Diff line number Diff line change @@ -247,17 +247,25 @@ jobs:
247247 echo "$GPG_KEY" | base64 --decode > ${NFPM_SIGNING_KEY_FILE}
248248 make package
249249
250- - name : Archive Binaries
250+ - name : Archive AMD64 Binaries
251251 uses : actions/upload-artifact@v3.1.2 # v3.1.2
252- matrix :
253- osarch : [amd64, arm64]
254252 with :
255- name : nginx-agent-binaries-${{ inputs.packageVersion }}-${{ matrix.osarch }}
253+ name : nginx-agent-binaries-${{ inputs.packageVersion }}-amd64
256254 path : |
257- build/${{ matrix.osarch }}/nginx-agent
258- build/${{ matrix.osarch }}/nginx-agent.sha256
259- build/${{ matrix.osarch }}/nginx-agent.buildstart
260- build/${{ matrix.osarch }}/nginx-agent.buildend
255+ build/amd64/nginx-agent
256+ build/amd64/nginx-agent.sha256
257+ build/amd64/nginx-agent.buildstart
258+ build/amd64/nginx-agent.buildend
259+
260+ - name : Archive ARM64 Binaries
261+ uses : actions/upload-artifact@v3.1.2 # v3.1.2
262+ with :
263+ name : nginx-agent-binaries-${{ inputs.packageVersion }}-arm64
264+ path : |
265+ build/arm64/nginx-agent
266+ build/arm64/nginx-agent.sha256
267+ build/arm64/nginx-agent.buildstart
268+ build/arm64/nginx-agent.buildend
261269
262270 - name : Install GPG tools
263271 if : ${{ inputs.publishPackages == true }}
You can’t perform that action at this time.
0 commit comments