Skip to content

Commit 3a9f57b

Browse files
committed
assemble-release action: include .zip extension in output path
1 parent fd3c5f0 commit 3a9f57b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/assemble-release/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ inputs:
1414
default: "**/*.pdb"
1515

1616
output-file-name:
17-
description: Output artifact name used in the upload-artifact action. a zip file with this name will be created in the github workspace so that it can be immediately consumed by other actions in the workflow without having to download the artifact.
17+
description: Output artifact name used in the upload-artifact action WITHOUT ".zip" extension. a zip file with this name will be created in the github workspace so that it can be immediately consumed by other actions in the workflow without having to download the artifact.
1818
default: ${{ github.event.repository.name || 'release'}}
1919

2020
working-directory:
@@ -61,7 +61,7 @@ runs:
6161
run: |
6262
zip -r ${{ github.workspace }}/${{ inputs.output-file-name }}.zip .
6363
echo 'ARTIFACT_FILENAME=${{ inputs.output-file-name }}' >> $GITHUB_ENV
64-
echo 'artifact-path=${{ github.workspace }}/${{ inputs.output-file-name }}' >> $GITHUB_OUTPUT
64+
echo 'artifact-path=${{ github.workspace }}/${{ inputs.output-file-name }}.zip' >> $GITHUB_OUTPUT
6565
6666
- name: Upload Artifact
6767
id: upload-artifact

0 commit comments

Comments
 (0)