Skip to content

Apply suggestions from code review #2

Apply suggestions from code review

Apply suggestions from code review #2

Workflow file for this run

name: Build and push spellcheck image

Check failure on line 1 in .github/workflows/build-docker.yaml

View workflow run for this annotation

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

Invalid workflow file

`pull-request` is not a valid event name
on:
push:
branches:
- main
pull-request:
branches:
- main
env:
REGISTRY: ghcr.io
IMAGE_NAME: alexslemonade/spellcheck
jobs:
build_and_push:
runs-on: ubuntu-22.04
permissions:
contents: read
packages: write
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Docker login
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker metadata
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=semver,pattern={{raw}}
type=edge,branch=main
- name: Build and push to Docker
uses: docker/build-push-action@v5
with:
push: ${{ github.event.action == 'push' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}