From d3bd8e82d0e3ee5689a8519c35433e16640bd0c5 Mon Sep 17 00:00:00 2001 From: Ayane Satomi Date: Sun, 9 May 2021 15:07:33 +0800 Subject: [PATCH] Fix staging step not setting correct artifact name Signed-off-by: Ayane Satomi --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index bf6c0bf6..d565036d 100755 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -51,7 +51,7 @@ jobs: - name: Stage Artifact for AppCenter uses: actions/upload-artifact@v2 with: - name: ${{ needs.variables.outputs-version }}-${{ matrix.os.runtime }} + name: ${{ needs.variables.outputs.version }}-${{ matrix.os.runtime }} path: ${{ github.workspace }}/Vignette.${{ needs.variables.outputs.version }}-${{ matrix.os.runtime }}.zip retention-days: 1 @@ -66,7 +66,7 @@ jobs: - name: Download Artifact uses: actions/download-artifact@v2 with: - name: ${{ needs.variables.outputs-version }}-${{ matrix.runtime }} + name: ${{ needs.variables.outputs.version }}-${{ matrix.runtime }} path: ${{ github.workspace }} - name: Upload Build