Skip to content

Release a new version to Github Packages #1

Release a new version to Github Packages

Release a new version to Github Packages #1

Workflow file for this run

name: 'Release a new version to Github Packages'
on:
release:
types: [published]
jobs:
push_to_registry:
name: Push Docker image to GitHub Packages tagged with "latest" and version number.
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- name: Login to ghcr
uses: docker/login-action@v1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
logout: true

Check failure on line 23 in .github/workflows/release-docker.yaml

View workflow run for this annotation

GitHub Actions / Release a new version to Github Packages

Invalid workflow file

The workflow is not valid. .github/workflows/release-docker.yaml (Line: 23, Col: 15): Unexpected value 'logout'
- name: Build and push base image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ghcr.io/${{ github.repository }}:${{ steps.get_version.outputs.VERSION }}
labels: ${{ steps.meta_base_image.outputs.labels }}