From d2332681a0ee47e95baee9d9ef6a25f86978a8e8 Mon Sep 17 00:00:00 2001 From: koko Date: Mon, 25 Sep 2023 09:53:35 -0400 Subject: [PATCH] Add names to artifact download steps in release workflow --- .github/workflows/release.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 44c9510..164f51c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 @@ -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