Skip to content

docker: merge psdk-doc-docker and add workflow #6

docker: merge psdk-doc-docker and add workflow

docker: merge psdk-doc-docker and add workflow #6

Workflow file for this run

---
name: Docker Workflow
on:
push:
branches: [master]
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
name: Build
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log into registry ${{ env.REGISTRY }}
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v5
flavor: |

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

View workflow run for this annotation

GitHub Actions / Docker Workflow

Invalid workflow file

The workflow is not valid. .github/workflows/docker.yml (Line: 36, Col: 9): Unexpected value 'flavor' .github/workflows/docker.yml (Line: 38, Col: 9): Unexpected value 'tags'
latest=true
tags: |
type=ref
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Setup context
run: make -C docker setup
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
platforms: linux/amd64
context: docker
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max