Skip to content

Commit

Permalink
use bigger runner
Browse files Browse the repository at this point in the history
  • Loading branch information
emostov committed Apr 9, 2024
1 parent 3c8a160 commit 8db8102
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ on:
jobs:
build:
name: build artifacts
runs-on: ubuntu-latest
# We use a special group that is configured to use github largest runner instance
# This is charged by the minute, so if you want to reduce cost change back to `runs-on: ubuntu-latest`
runs-on:
group: ubuntu-runners
strategy:
matrix:
include:
Expand All @@ -36,7 +39,10 @@ jobs:

upload_to_ecr:
name: Upload toolchain artifacts to ECR
runs-on: ubuntu-latest
# We use a special group that is configured to use github largest runner instance
# This is charged by the minute, so if you want to reduce cost change back to `runs-on: ubuntu-latest`
runs-on:
group: ubuntu-runners
needs:
- build
permissions:
Expand Down Expand Up @@ -85,7 +91,10 @@ jobs:
upload_to_ghcr:
name: Upload toolchain artifacts to GHCR
runs-on: ubuntu-latest
# We use a special group that is configured to use github largest runner instance
# This is charged by the minute, so if you want to reduce cost change back to `runs-on: ubuntu-latest`
runs-on:
group: ubuntu-runners
needs:
- build
permissions:
Expand Down

0 comments on commit 8db8102

Please sign in to comment.