From 7d5f0c53ca19ee3fa510ee104f604b5bfe970224 Mon Sep 17 00:00:00 2001 From: cmdoret Date: Tue, 13 Aug 2024 18:28:53 +0200 Subject: [PATCH] ci: move artifact to root --- .github/workflows/build.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b5f2f2e..9a1cb72 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,11 +20,11 @@ jobs: - uses: actions/checkout@v4 - name: build - run: typst compile --root . src/modos.typ build/modos.pdf + run: typst compile --root . src/modos.typ modos.pdf - name: upload pdf uses: actions/upload-artifact@v4 if: ${{ inputs.is_release }} with: name: poster - path: build/modos.pdf + path: modos.pdf diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a21cb05..d1b5d31 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,12 +23,12 @@ jobs: uses: actions/download-artifact@v4.1.8 with: name: poster - path: build/modos.pdf + path: modos.pdf - uses: actions/checkout@v4 - name: create release uses: softprops/action-gh-release@v2 with: - files: build/modos.pdf + files: modos.pdf