Skip to content

Commit 7d5f0c5

Browse files
committed
ci: move artifact to root
1 parent 91977f9 commit 7d5f0c5

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020
- uses: actions/checkout@v4
2121

2222
- name: build
23-
run: typst compile --root . src/modos.typ build/modos.pdf
23+
run: typst compile --root . src/modos.typ modos.pdf
2424

2525
- name: upload pdf
2626
uses: actions/upload-artifact@v4
2727
if: ${{ inputs.is_release }}
2828
with:
2929
name: poster
30-
path: build/modos.pdf
30+
path: modos.pdf

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323
uses: actions/download-artifact@v4.1.8
2424
with:
2525
name: poster
26-
path: build/modos.pdf
26+
path: modos.pdf
2727

2828
- uses: actions/checkout@v4
2929

3030
- name: create release
3131
uses: softprops/action-gh-release@v2
3232
with:
33-
files: build/modos.pdf
33+
files: modos.pdf
3434

0 commit comments

Comments
 (0)