We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 777cebe + 52e3fc0 commit f991894Copy full SHA for f991894
.github/workflows/build.yml
@@ -12,7 +12,7 @@ permissions:
12
13
jobs:
14
build:
15
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.runner || 'ubuntu-latest' }}
16
strategy:
17
fail-fast: false
18
matrix:
@@ -26,8 +26,13 @@ jobs:
26
tag_suffix: '-node-24.8'
27
args: '--build-arg NODE_VERSION=24.8.0'
28
- image: reticulum-builder
29
- tag_suffix: '-ruby-3.4.7'
+ tag_suffix: '-ruby-3.4.7-amd64'
30
+ args: '--build-arg RUBY_VERSION=3.4.7'
31
+ runner: ubuntu-latest
32
+ - image: reticulum-builder
33
+ tag_suffix: '-ruby-3.4.7-arm64'
34
args: '--build-arg RUBY_VERSION=3.4.7'
35
+ runner: ubuntu-24.04-arm
36
- image: ruby-postgres
37
tag_suffix: '-ruby-3.4.7-postgres-16.1'
38
args: '--build-arg RUBY_VERSION=3.4.7 --build-arg POSTGRES_VERSION=16.1'
0 commit comments