Skip to content

Commit

Permalink
env and runner var testing 03
Browse files Browse the repository at this point in the history
  • Loading branch information
mcdermg committed May 27, 2024
1 parent d08b8f7 commit bcfd37b
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/self-host.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,16 @@ on:

jobs:
Explore-GitHub-Actions:
runs-on: ${{ var.RUNNER }}
strategy:
matrix:
env: [prod, dev]
include:
- env: prod
runner: arc-runner-set-01
- env: dev
runner: arc-runner-set-02
runs-on: ${{ matrix.runner }}
environment:
name: ${{ github.ref == 'refs/heads/main' && 'prod' || 'dev' }}
name: ${{ matrix.env }}
steps:
- run: echo "🎉 This job uses runner scale set runners!"
- run: echo "🎉 This job uses runner scale set runners!"

0 comments on commit bcfd37b

Please sign in to comment.