Skip to content

Workflow file for this run

name: "Publish to GHCR"
on: [push, workflow_dispatch]
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup environment
uses: ./.github/workflows/setup_environment.yml
- name: bump version and update template_input.yaml
run: |
PROJECT_VERSION=$(poetry version --short)
echo "PROJECT_VERSION=$PROJECT_VERSION" >> $GITHUB_ENV
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata for the Docker image
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push the Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true

Check failure on line 37 in .github/workflows/docker_image.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/docker_image.yml

Invalid workflow file

You have an error in your yaml syntax on line 37
tags: [${{ env.PROJECT_VERSION }}, latest]
labels: ${{ steps.meta.outputs.labels }}