mirror of
https://github.com/fphammerle/docker-tor-proxy.git
synced 2025-10-27 02:43:35 +01:00
5db662d486
Bumps [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) from 1.5.1 to 1.6.0. - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](https://github.com/docker/setup-buildx-action/compare/v1.5.1...v1.6.0) --- updated-dependencies: - dependency-name: docker/setup-buildx-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
27 lines
823 B
YAML
27 lines
823 B
YAML
# sync with https://github.com/fphammerle/docker-onion-service/blob/master/.github/workflows/container-image.yml
|
|
|
|
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@v1.2.0
|
|
- uses: docker/setup-buildx-action@v1.6.0
|
|
# > By default, this action uses the Git context so you don't need to use
|
|
# > the actions/checkout action to checkout the repository because this
|
|
# > will be done directly by buildkit. [...]
|
|
# > any file mutation in the steps that precede [...] will be ignored
|
|
# https://github.com/marketplace/actions/build-and-push-docker-images
|
|
- uses: docker/build-push-action@v2.7.0
|
|
with:
|
|
platforms: |
|
|
linux/amd64
|
|
linux/arm/v7
|