From 07273a1e2457c58e71535924975da855ef197380 Mon Sep 17 00:00:00 2001 From: Christian Meesters Date: Wed, 11 Sep 2024 09:27:05 +0200 Subject: [PATCH] fix: attempt to shift upload to build --- .github/workflows/release-please.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 772388b..5edc533 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -34,6 +34,15 @@ jobs: --configfile config/config_for_github.yaml ./render --master-tex Snakemake_HPC_Admins.tex \ --configfile config/config_for_github.yaml + - name: Upload Release Artifacts + if: ${{ steps.release.outputs.release_created }} + uses: actions/upload-artifact@v4 + with: + name: Slides + path: | + slides/*.pdf + + release-please: runs-on: ubuntu-latest needs: build @@ -43,10 +52,3 @@ jobs: with: release-type: simple package-name: "snakemake-hpc-teaching-material" - - name: Upload Release Artifacts - if: ${{ steps.release.outputs.release_created }} - uses: actions/upload-artifact@v4 - with: - name: Slides - path: | - slides/*.pdf