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.
1 parent dee56cc commit 58fe6d6Copy full SHA for 58fe6d6
1 file changed
.github/workflows/build.yml
@@ -48,12 +48,25 @@ jobs:
48
with:
49
ruby-version: '4.0'
50
bundler-cache: true
51
- cache-version: ${{ inputs.cache-version }}
+ - name: Display Ruby environment
52
+ run: bundle env
53
- name: Run beaker
54
run: bundle exec beaker-docker containerfile ${{ matrix.env.BEAKER_SETFILE }}
55
env: ${{ matrix.env }}
56
- name: Output Containerfile
57
run: cat Containerfile
58
+ #- name: Set up Docker Buildx
59
+ # uses: docker/setup-buildx-action@v4
60
+ - name: Build
61
+ uses: docker/build-push-action@v7.1.0
62
+ with:
63
+ file: Containerfile
64
+ provenance: true
65
+ push: false
66
+ sbom: true
67
+ #platforms: linux/amd64
68
+ #load: true # makes the image available to the running docker service
69
+ tags: latest
70
71
tests:
72
if: always()
0 commit comments