Skip to content

testing workflow

testing workflow #9

Workflow file for this run

name: Build and Publish Docker Image
on:
push:
release:
types: [published]
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:

Check failure on line 27 in .github/workflows/docker.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/docker.yml

Invalid workflow file

You have an error in your yaml syntax on line 27
push: true
tags: |
ghcr.io/${{ github.repository }}:latest
# ghcr.io/${{ github.repository }}:${{ github.ref }}
ghcr.io/${{ github.repository }}:0.5.1
platforms: |
linux/arm64/v8
linux/amd64