Skip to content

Commit

Permalink
wip: temporarily hard-code runs-on values
Browse files Browse the repository at this point in the history
  • Loading branch information
galargh authored and lidel committed Sep 20, 2023
1 parent 7f97011 commit 3f9e4c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ env:

jobs:
build:
runs-on: ${{ fromJSON(vars.CI_BUILD_RUNS_ON || '"ubuntu-latest"') }}
runs-on: ["self-hosted", "linux", "x64", "2xlarge"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
continue-on-error: true # skip if no releases

persist:
runs-on: ${{ fromJSON(vars.CI_BUILD_RUNS_ON || '"ubuntu-latest"') }}
runs-on: ["self-hosted", "linux", "x64", "2xlarge"]
needs: sign-macos
environment: Deploy
steps:
Expand Down

0 comments on commit 3f9e4c9

Please sign in to comment.