From eda89b26fbf28e9061f951053645d1bfe256922b Mon Sep 17 00:00:00 2001 From: Markus Rosenstihl Date: Thu, 7 Dec 2023 14:17:16 +0000 Subject: [PATCH] build (#174) Bookworm runner is installed and works. Image was built and runs too, closes #173 Reviewed-on: https://gitea.pkm.physik.tu-darmstadt.de/IPKM/nmreval/pulls/174 Co-authored-by: Markus Rosenstihl Co-committed-by: Markus Rosenstihl --- .gitea/workflows/build-appimage.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/build-appimage.yaml b/.gitea/workflows/build-appimage.yaml index 6a1a027..2c43c0b 100644 --- a/.gitea/workflows/build-appimage.yaml +++ b/.gitea/workflows/build-appimage.yaml @@ -7,13 +7,13 @@ on: jobs: Explore-Gitea-Actions: - runs-on: bullseye + runs-on: bookworm steps: - name: Check out repository code uses: actions/checkout@v3 - run: | apt-get -y update - apt-get -y install python3-yaml python3-requests bash + apt-get -y install python3-yaml python3-requests - name: Declare some variables shell: bash run: | @@ -29,10 +29,10 @@ jobs: env: GPG_KEYGRIP: ${{ vars.GPG_KEYGRIP }} GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} - GO_PIPELINE_LABEL: ${{ env.YEAR }}.${{ gitea.run_number }}_${{ env.SHA_SHORT }} + GO_PIPELINE_LABEL: ${{ env.YEAR }}.${{ gitea.run_number }}_${{ env.SHA_SHORT }}_bookworm - name: Upload AppImage run: ./tools/upload_gitea.sh env: - GO_PIPELINE_LABEL: ${{ env.YEAR }}.${{ gitea.run_number }}_${{ env.SHA_SHORT }} + GO_PIPELINE_LABEL: ${{ env.YEAR }}.${{ gitea.run_number }}_${{ env.SHA_SHORT }}_bookworm UPLOAD_TOKEN: ${{ secrets.UPLOAD_TOKEN }} UPLOAD_USER: ${{ vars.UPLOAD_USER }}