Skip to content

Build and publish Docker image #1

Build and publish Docker image

Build and publish Docker image #1

name: Build and publish Docker image
on: [push]
env:
REGISTRY: git.newpipe-ev.de
# make sure the name is lowercase, otherwise Docker won't accept it
IMAGE_NAME: newpipe-ev/website
permissions:
repository: read

Check failure on line 10 in .github/workflows/build-docker-image.yml

View workflow run for this annotation

GitHub Actions / Build and publish Docker image

Invalid workflow file

The workflow is not valid. .github/workflows/build-docker-image.yml (Line: 10, Col: 3): Unexpected value 'repository'
packages: write
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: |
linux/amd64