Skip to content

Add Dockerfile and docker build github action #1

Add Dockerfile and docker build github action

Add Dockerfile and docker build github action #1

on:
push:
branches:
#branches: [main]
jobs:
build-push:
- name: Checkout

Check failure on line 8 in .github/workflows/publish-docker.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish-docker.yaml

Invalid workflow file

You have an error in your yaml syntax on line 8
uses: actions/checkout@v4
- name: Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
# list of Docker images to use as base name for tags
images: |
${{ secrets.DOCKERHUB_USERNAME }}/pkl-playground
# generate Docker tags based on the following events/attributes
tags: |
type=schedule
type=sha
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
push: false
# push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}