container-image.yml 1.1 KB

123456789101112131415161718192021222324252627282930
  1. # sync with https://github.com/fphammerle/docker-onion-service/blob/master/.github/workflows/container-image.yml
  2. name: container image
  3. on:
  4. push:
  5. pull_request:
  6. schedule:
  7. - cron: '0 20 * * 5'
  8. jobs:
  9. docker-build:
  10. runs-on: ubuntu-20.04
  11. steps:
  12. - uses: docker/setup-qemu-action@v1.2.0
  13. - uses: docker/setup-buildx-action@v1.6.0
  14. # > By default, this action uses the Git context so you don't need to use
  15. # > the actions/checkout action to checkout the repository because this
  16. # > will be done directly by buildkit. [...]
  17. # > any file mutation in the steps that precede [...] will be ignored
  18. # https://github.com/marketplace/actions/build-and-push-docker-images
  19. # > The commit history is not preserved.
  20. # https://docs.docker.com/engine/reference/commandline/build/#git-repositories
  21. - uses: docker/build-push-action@v2.8.0
  22. with:
  23. build-args: |
  24. SETUPTOOLS_SCM_PRETEND_VERSION=0 # git history unavailable (see above)
  25. platforms: |
  26. linux/amd64
  27. # missing cffi wheel for linux/arm/v7