container-image.yml 823 B

1234567891011121314151617181920212223242526
  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.5.1
  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. - uses: docker/build-push-action@v2.6.1
  20. with:
  21. platforms: |
  22. linux/amd64
  23. linux/arm/v7