From 3b68d67eb09004c75b4fc6449e5dfff14cb62d61 Mon Sep 17 00:00:00 2001 From: HeNine <> Date: Fri, 14 Apr 2023 14:51:04 +0200 Subject: [PATCH] build? --- .gitea/workflows/build.yaml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 48c31dd..f2418ab 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -8,31 +8,29 @@ on: jobs: Build-PDF: runs-on: texlive-2023-04-09 - # runs-on: ubuntu-latest permissions: contents: read - packages: write steps: - run: echo "The job was automatically triggered by a ${{ github.event_name }} event." - run: echo "This job is now running on a ${{ runner.os }}." - run: echo "The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." + - name: Install node run: apt-get update && apt-get install -y nodejs - # - name: Install LaTeX packages - # run: tlmgr update --self && tlmgr install cleveref scholax anyfontsize wrapfig framed scholax ly1 + - name: Check out repository code uses: actions/checkout@v3 - run: echo "The ${{ github.repository }} repository has been cloned to the runner." - # - name: Install dependencies - # run: | - # apt-get update && apt-get install -y texlive texlive-fonts-recommended + - name: Build PDF with `latexmk` run: latexmk -pdf - # - run: echo "GHtoken $GITHUB_TOKEN" + - name: Publish package env: PACKAGE_UPLOAD_TOKEN: ${{ secrets.PACKAGE_UPLOAD_TOKEN }} run: | + curl --user henine:$PACKAGE_UPLOAD_TOKEN -X DELETE \ + https://git.raptorpond.com/api/packages/henine/generic/adventurers_guide/latest/ curl --user henine:$PACKAGE_UPLOAD_TOKEN \ --fail-with-body \ --upload-file "Adventurer's Guide to Savits.pdf" \