Skip to content

Commit

Permalink
Add names to artifact download steps in release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sudokoko committed Sep 25, 2023
1 parent 9211c79 commit d233268
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ jobs:
id: version
run: echo "version=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_OUTPUT

- uses: actions/download-artifact@master
- name: Download Package Artifact
uses: actions/download-artifact@master
with:
name: LBPUnion.Starnet.${{ steps.version.outputs.version }}.nupkg
path: ${{ github.workspace }}/LBPUnion.Starnet.${{ steps.version.outputs.version }}.nupkg
Expand Down Expand Up @@ -79,7 +80,8 @@ jobs:
id: version
run: echo "version=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_OUTPUT

- uses: actions/download-artifact@master
- name: Download Package Artifact
uses: actions/download-artifact@master
with:
name: LBPUnion.Starnet.${{ steps.version.outputs.version }}.nupkg
path: ${{ github.workspace }}/LBPUnion.Starnet.${{ steps.version.outputs.version }}.nupkg
Expand Down

0 comments on commit d233268

Please sign in to comment.