Skip to content

add cmake update step to docker #3

add cmake update step to docker

add cmake update step to docker #3

Workflow file for this run

name: Docker Image CI for GHCR
on:
push:
paths:
- docker/impacto-switch/*
jobs:
build_and_publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v2
with:

Check failure on line 15 in .github/workflows/docker-switch.yml

View workflow run for this annotation

GitHub Actions / Docker Image CI for GHCR

Invalid workflow file

The workflow is not valid. .github/workflows/docker-switch.yml (Line: 15, Col: 14): Unexpected value '' .github/workflows/docker-switch.yml (Line: 16, Col: 9): Unexpected value 'registry'
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: ghcr.io/committeeofzero/impacto-switch
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
push: true
context: docker/impacto-switch
file: docker/impacto-switch/Dockerfile
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}