From 5e6b88a5fcbb6d64beee9a02ae9558eafca7b787 Mon Sep 17 00:00:00 2001 From: Filip Slezak Date: Mon, 16 Oct 2023 11:30:52 +0200 Subject: [PATCH] fix(ci): runner linux only on release --- .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 d20ddc1..5923b58 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -48,7 +48,7 @@ jobs: create-release: name: create-release - runs-on: self-hosted + runs-on: [self-hosted, linux] outputs: upload_url: ${{ steps.release.outputs.upload_url }} steps: @@ -70,15 +70,15 @@ jobs: build: [linux, linux-arm, linux-arm64] include: - build: linux - os: self-hosted + os: [self-hosted, linux] asset_name: yubikey-provision-linux-x86_64 target: x86_64-unknown-linux-gnu - build: linux-arm - os: self-hosted + os: [self-hosted, linux] asset_name: yubikey-provision-linux-armv7 target: armv7-unknown-linux-gnueabihf - build: linux-arm64 - os: self-hosted + os: [self-hosted, linux] asset_name: yubikey-provision-linux-arm64 target: aarch64-unknown-linux-gnu