Skip to content

fix: Add metadata write perm for docker builds in CI #117

fix: Add metadata write perm for docker builds in CI

fix: Add metadata write perm for docker builds in CI #117

Workflow file for this run

name: Build and upload Docker image
on:
release:
types: [published]
push:
tags:
- "*.*.*"
env:
REGISTRY: ghcr.io
BASE_NAME: graphops/subgraph-radio
SQLX_OFFLINE: true
jobs:
build-linux:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
metadata: write

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

View workflow run for this annotation

GitHub Actions / Build and upload Docker image

Invalid workflow file

The workflow is not valid. .github/workflows/docker.yml (Line: 22, Col: 7): Unexpected value 'metadata'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
# list of Docker images to use as base name for tags
images: |
${{ env.REGISTRY }}/${{ env.BASE_NAME }}
# generate Docker tags based on the following events/attributes
tags: |
type=schedule
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}.{{minor}}.{{patch}}
type=semver,pattern={{major}}
type=sha
latest:dev
- name: Log in to the Container registry
uses: docker/[email protected]
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
with:
context: ./
push: true
tags: ${{ steps.meta.outputs.tags }}
file: Dockerfile