Skip to content

Commit

Permalink
fix(ci): only use GH runners for PRs (#326)
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdcordeiro authored Jan 14, 2025
1 parent 45d6b6a commit 699bee4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Build-Rock.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
strategy:
fail-fast: true
matrix: ${{ fromJSON(needs.configure-build.outputs.runner-build-matrix) }}
runs-on: ${{ matrix.runner }}
runs-on: ${{ github.event_name == 'pull_request' && 'ubuntu-22.04' || matrix.runner }}
name: "runner-build | ${{ matrix.architecture }} ${{ inputs.build-id != '' && format('| {0}', inputs.build-id) || ' '}}"
steps:

Expand Down
14 changes: 7 additions & 7 deletions oci/mock-rock/_releases.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,31 +35,31 @@
"1.1-22.04": {
"end-of-life": "2030-05-01T00:00:00Z",
"candidate": {
"target": "1074"
"target": "1077"
},
"beta": {
"target": "1074"
"target": "1077"
},
"edge": {
"target": "1074"
"target": "1077"
}
},
"1-22.04": {
"end-of-life": "2030-05-01T00:00:00Z",
"candidate": {
"target": "1074"
"target": "1077"
},
"beta": {
"target": "1074"
"target": "1077"
},
"edge": {
"target": "1074"
"target": "1077"
}
},
"1.2-22.04": {
"end-of-life": "2030-05-01T00:00:00Z",
"beta": {
"target": "1075"
"target": "1078"
},
"edge": {
"target": "1.2-22.04_beta"
Expand Down

0 comments on commit 699bee4

Please sign in to comment.