Skip to content

Merge branch 'main' of https://github.com/thinc-org/thinc-roadmap #2

Merge branch 'main' of https://github.com/thinc-org/thinc-roadmap

Merge branch 'main' of https://github.com/thinc-org/thinc-roadmap #2

Workflow file for this run

name: 'Build static sites image'
on:
push:
branches:
- main
jobs:
build_image:
name: Build docker image
runs-on:
- ubuntu-latest
permissions:
content: write

Check failure on line 14 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / Build static sites image

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yaml (Line: 14, Col: 7): Unexpected value 'content'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to the Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build image
uses: docker/build-push-action@v5
with:
context: .
push: true
cache-from: type=gha
cache-to: type=gha,mode=max