Skip to content

Commit 7e70e0e

Browse files
authored
Merge pull request #45 from Shayan-Ghani/wiki-artifact
fix(ci) : replace relative path with workspace variable
2 parents 363f059 + 9806a88 commit 7e70e0e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/wiki.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,13 @@ jobs:
5252
run: |
5353
python vault.py
5454
python boundary.py
55-
mv *.png ../wiki/
55+
mv *.png ${{github.workspace}}/artifacts/wiki/
56+
ls ../wiki/
5657
5758
- uses: actions/upload-artifact@v4
5859
with:
5960
name: diagrams
60-
path: ../wiki/
61+
path: ${{github.workspace}}/artifacts/wiki/
6162

6263
deploy-wiki:
6364
needs: generate_diagrams

0 commit comments

Comments
 (0)