Skip to content

Commit 1e95f23

Browse files
authored
Update action.yml
1 parent f1a2895 commit 1e95f23

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

action.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ inputs:
1818
runs:
1919
using: "composite"
2020
steps:
21-
- name: Create Workspace
21+
- name: Create Artifact Workspace
22+
id: artifactworkspace
2223
shell: bash
2324
run: |
2425
GUID=$(uuidgen)
@@ -31,11 +32,11 @@ runs:
3132
uses: actions/download-artifact@v4.3.0
3233
with:
3334
name: ${{ inputs.artifact }}
34-
path: ${{ steps.tempdir.outputs.build_workspace }}
35+
path: ${{ steps.artifactworkspace.outputs.build_workspace }}
3536

3637
- name: Activate the frontend
3738
uses: CoreHelpers/upload-spa-to-azure-blob@v0.0.1
3839
with:
3940
connectionstring: ${{ inputs.connectionstring }}
4041
container: ${{ inputs.container }}
41-
source: "${{ steps.tempdir.outputs.build_workspace }}/"
42+
source: "${{ steps.artifactworkspace.outputs.build_workspace }}/"

0 commit comments

Comments
 (0)