From 8f1c4bc9da6d85e4d814ac63397582a0057ab896 Mon Sep 17 00:00:00 2001 From: Duncan Tourolle Date: Sat, 14 Feb 2026 09:13:59 +0100 Subject: [PATCH] correct CI tag --- .gitea/workflows/build-and-test.yml | 2 +- .gitea/workflows/build-release.yml | 8 ++++---- .gitea/workflows/traceability-check.yml | 2 +- .gitea/workflows/traceability.yml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/build-and-test.yml b/.gitea/workflows/build-and-test.yml index cc3b738..0882cd9 100644 --- a/.gitea/workflows/build-and-test.yml +++ b/.gitea/workflows/build-and-test.yml @@ -16,7 +16,7 @@ on: jobs: build: name: Build APK and Run Tests - runs-on: [linux, amd64] + runs-on: linux/amd64 container: image: gitea.tourolle.paris/dtourolle/jellytau-builder:latest diff --git a/.gitea/workflows/build-release.yml b/.gitea/workflows/build-release.yml index de88a81..c6ace6e 100644 --- a/.gitea/workflows/build-release.yml +++ b/.gitea/workflows/build-release.yml @@ -17,7 +17,7 @@ env: jobs: test: name: Run Tests - runs-on: [linux, amd64] + runs-on: linux/amd64 steps: - name: Checkout repository uses: actions/checkout@v4 @@ -61,7 +61,7 @@ jobs: build-linux: name: Build Linux - runs-on: [linux, amd64] + runs-on: linux/amd64 needs: test steps: - name: Checkout repository @@ -133,7 +133,7 @@ jobs: build-android: name: Build Android - runs-on: [linux, amd64] + runs-on: linux/amd64 needs: test steps: - name: Checkout repository @@ -214,7 +214,7 @@ jobs: create-release: name: Create Release - runs-on: [linux, amd64] + runs-on: linux/amd64 needs: [build-linux, build-android] if: startsWith(github.ref, 'refs/tags/v') steps: diff --git a/.gitea/workflows/traceability-check.yml b/.gitea/workflows/traceability-check.yml index 36732bc..2b568b2 100644 --- a/.gitea/workflows/traceability-check.yml +++ b/.gitea/workflows/traceability-check.yml @@ -14,7 +14,7 @@ on: jobs: validate-traces: - runs-on: [linux, amd64] + runs-on: linux/amd64 name: Check Requirement Traces steps: diff --git a/.gitea/workflows/traceability.yml b/.gitea/workflows/traceability.yml index 161ad2f..2fd770f 100644 --- a/.gitea/workflows/traceability.yml +++ b/.gitea/workflows/traceability.yml @@ -15,7 +15,7 @@ on: jobs: traceability: name: Validate Requirement Traces - runs-on: [linux, amd64] + runs-on: linux/amd64 steps: - name: Checkout code