fix format #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jobs: | ||
push-container-image: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
with: | ||
platforms: 'arm64' | ||
- name: Set up Docker Buildx | ||
id: buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- name: Login to Github Packages | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Build image and push to Docker Hub and GitHub Container Registry | ||
uses: docker/build-push-action@v2 | ||
with: | ||
# relative path to the place where source code with Dockerfile is located | ||
context: . | ||
file: { context }/APTnotes_async_dockerfile.Dockerfile | ||
# Note: tags has to be all lower-case | ||
tags: | | ||
ghcr.io/schwankner/APTnotes-tools:latest | ||
# build on feature branches, push only on main branch | ||
push: ${{ github.ref == 'refs/heads/master' }} | ||
platforms: linux/amd64,linux/arm64 | ||
- name: Image digest | ||
run: echo ${{ steps.docker_build.outputs.digest }} |