Skip to content

Merge pull request #239 from yaleman/dependabot/cargo/serde_json-1.0.96 #276

Merge pull request #239 from yaleman/dependabot/cargo/serde_json-1.0.96

Merge pull request #239 from yaleman/dependabot/cargo/serde_json-1.0.96 #276

---
name: Build Container
"on":
push:
branches:
- main
# concurrency:
# group: ${{ github.workflow }}-${{ github.ref }}
# cancel-in-progress: true
jobs:
build_container:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- # https://github.com/docker/login-action/#github-container-registry
name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
# don't log in if we're not going to push!
if: ${{ github.ref == 'refs/heads/main' }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
# buildkitd-flags: --debug
install: true
- name: vendor the things
run: |
mkdir .cargo
cargo vendor > .cargo/config.toml
- name: Docker build and push
uses: docker/build-push-action@v4
with:
push: ${{ github.ref == 'refs/heads/main' }}
# platforms: "linux/arm64"
platforms: "linux/amd64,linux/arm64"
# https://github.com/docker/build-push-action/issues/254
tags: ghcr.io/yaleman/goatns:latest
cache-from: type=gha
cache-to: type=gha,mode=max
build-args: GITHUB_SHA=${GITHUB_SHA}