Skip to content

Commit

Permalink
fix(ci): runner linux only on release
Browse files Browse the repository at this point in the history
  • Loading branch information
filipslezaklab committed Oct 16, 2023
1 parent aa74863 commit 5e6b88a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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

Expand Down

0 comments on commit 5e6b88a

Please sign in to comment.