Skip to content

Commit 4f8607d

Browse files
committed
ci: specify working-directory & perform output of dir
1 parent 7f30203 commit 4f8607d

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/draft.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,8 @@ jobs:
9393
run: cargo build --release --locked --target ${{ matrix.target }}
9494
- name: "Pack artifact"
9595
shell: powershell
96+
working-directory: ${{ github.workspace }}
97+
# We have to create a zip arch in order for draft to find it as the upload job handles it outside the container or gh handles it directly
9698
run: |
9799
$ARTIFACT_NAME="${{ env.PROJECT_NAME }}-${{ matrix.target }}-${{ github.ref_name }}"
98100
$DRAFT_DIR="${ARTIFACT_NAME}"
@@ -118,6 +120,12 @@ jobs:
118120
needs: [ build-unix, build-windows ]
119121
steps:
120122
- uses: actions/download-artifact@v4
123+
working-directory: ${{ github.workspace }}
124+
run: |
125+
echo Downloading artifacts
126+
echo "${{ github.workspace }}"
127+
ls -lah
128+
121129
id: artifact-download-step
122130
with:
123131
merge-multiple: true

0 commit comments

Comments
 (0)