From 3ced1e9e762e8c3fd83477cfa6849adb975eee3c Mon Sep 17 00:00:00 2001 From: Hendrik Garske Date: Sat, 16 May 2026 19:13:02 +0200 Subject: [PATCH] Use self-hosted runners for release builds --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 07656fa..ee7adf2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,21 +3,21 @@ name: Release Build on: push: tags: - - 'v*' + - "v*" permissions: contents: write jobs: build: - runs-on: ubuntu-latest + runs-on: [self-hosted, linux, x64, docker] steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: '20' - cache: 'npm' + node-version: "20" + cache: npm - name: Install deps run: npm ci --no-audit --no-fund