12345678910111213141516171819202122232425262728293031 |
- 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@v2.1.0
- - uses: docker/setup-buildx-action@v2.4.1
-
-
-
-
-
-
-
-
- - uses: docker/build-push-action@v4.0.0
- with:
- build-args: |
- SETUPTOOLS_SCM_PRETEND_VERSION=0
- platforms: |
- linux/amd64
-
|