From 9471e93a1132e56491cc0803fe9cfc36a3f6e1c7 Mon Sep 17 00:00:00 2001 From: Jean-Michel Tremblay Date: Sun, 19 Apr 2026 15:24:49 -0400 Subject: [PATCH] no *** node in this --- .forgejo/workflows/build.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index bb4b330..e4e3b7d 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -5,16 +5,13 @@ on: [push] jobs: build: runs-on: docker + steps: - name: Checkout - uses: actions/checkout@v4 + run: git clone ${{ github.server_url }}/${{ github.repository }}.git . - name: Build - run: | - docker run --rm -w /doc -v $PWD:/doc thomasweise/docker-texlive-full make + run: docker run --rm -w /doc -v $PWD:/doc thomasweise/docker-texlive-full make - name: Upload PDF - uses: actions/upload-artifact@v4 - with: - name: resume - path: examples/resume_jm_tremblay*.pdf \ No newline at end of file + run: cp examples/resume_jm_tremblay*.pdf ${{ github.workspace }}/artifacts/ \ No newline at end of file