1234567891011121314151617181920212223242526272829303132333435363738 |
- name: container image
- on:
- push:
- pull_request:
- schedule:
- - cron: '0 20 * * 5'
- jobs:
- docker-build:
- runs-on: ubuntu-20.04
- steps:
- - uses: docker/setup-qemu-action@v3.3.0
- - uses: docker/setup-buildx-action@v3.8.0
-
-
-
-
-
- - uses: docker/build-push-action@v6.13.0
- with:
- platforms: |
- linux/amd64
- linux/arm/v7
-
- build-args: REVISION=${{ github.sha }}
-
-
-
-
-
-
- provenance: false
-
-
- outputs: type=oci,dest=oci-container-image.tar
- - uses: actions/upload-artifact@v4.6.0
- with: {path: oci-container-image.tar}
|