Skip to content

ci: enable triggering a release workflow by clicking a button in github.com #17

ci: enable triggering a release workflow by clicking a button in github.com

ci: enable triggering a release workflow by clicking a button in github.com #17

Workflow file for this run

name: PR
on:
pull_request:
types: [opened, reopened, synchronize]
jobs:
should_build:
runs-on: ubuntu-latest
steps:
- name: Set up Docker buildx
uses: docker/setup-buildx-action@v3
- name: Log in to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}
- name: Build image
uses: docker/build-push-action@v5
with:
cache-from: type=gha
platforms: linux/amd64 # GitHub only offers AMD64 codespaces
pull: true