Skip to content

Commit

Permalink
Beaker: Assume self-hosted runner if platform doesnt start with ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
bastelfreak committed Aug 20, 2024
1 parent cf50490 commit 3a15d07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/beaker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ jobs:
bundler-cache: true
cache-version: ${{ inputs.cache-version }}
working-directory: ${{ inputs.working-directory }}
self-hosted: ${{ inputs.acceptance_runs_on != 'ubuntu-24.04' }}
self-hosted: ${{ ! startsWith(inputs.acceptance_runs_on, 'ubuntu-') }}
- name: Run tests
run: bundle exec rake beaker
env: ${{ matrix.env }}
Expand Down

0 comments on commit 3a15d07

Please sign in to comment.