Skip to content

Commit

Permalink
Fix staging step not setting correct artifact name
Browse files Browse the repository at this point in the history
Signed-off-by: Ayane Satomi <[email protected]>
  • Loading branch information
sr229 committed May 9, 2021
1 parent f4dd06d commit d3bd8e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down

0 comments on commit d3bd8e8

Please sign in to comment.