File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed
Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -18,15 +18,24 @@ inputs:
1818runs :
1919 using : " composite"
2020 steps :
21+ - name : Create Workspace
22+ shell : bash
23+ run : |
24+ GUID=$(uuidgen)
25+ UNIQUE_DIR="${RUNNER_TEMP}/${GUID}"
26+ mkdir -p "$UNIQUE_DIR"
27+ echo "Created: $UNIQUE_DIR"
28+ echo "build_workspace=$UNIQUE_DIR" >> "$GITHUB_OUTPUT"
29+
2130 - name : Download frontend build
2231 uses : actions/download-artifact@v4.3.0
2332 with :
2433 name : ${{ inputs.artifact }}
25- path : ./build
34+ path : ${{ steps.tempdir.outputs.build_workspace }}
2635
2736 - name : Activate the frontend
2837 uses : CoreHelpers/upload-spa-to-azure-blob@v0.0.1
2938 with :
3039 connectionstring : ${{ inputs.connectionstring }}
3140 container : ${{ inputs.container }}
32- source : ./build
41+ source : " ${{ steps.tempdir.outputs.build_workspace }}/ "
You can’t perform that action at this time.
0 commit comments