Add remote debugging #28
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: Docker Image Build | |
on: | |
push: | |
tags: ['v*'] | |
pull_request: | |
workflow_dispatch: | |
inputs: | |
push: | |
description: 'Push' | |
required: false | |
type: boolean | |
default: true | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: bws-cache | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: docker/setup-qemu-action@v3 | |
- uses: docker/setup-buildx-action@v3 | |
- name: Login to GHCR | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- uses: docker/metadata-action@v5 | |
id: meta | |
with: | |
images: ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.IMAGE_NAME }} | |
tags: | | |
type=semver,pattern={{version}} | |
type=semver,pattern={{major}}.{{minor}} | |
type=semver,pattern={{major}} | |
type=ref,event=tag | |
type=ref,event=pr | |
- name: Build and push image | |
uses: docker/build-push-action@v6 | |
with: | |
push: ${{ inputs.push != 'false' }} # is null if trigger != workflow_dispatch | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
annotations: ${{ steps.meta.outputs.annotations }} | |
platforms: linux/amd64,linux/arm64 | |
# Build cache is scoped to branches by default. | |
# We use the main branch as a fallback if there's no cache for the existing branch. | |
# https://stackoverflow.com/a/77127188/5209106 | |
cache-from: | | |
type=gha | |
type=gha,scope=main | |
cache-to: type=gha,mode=max | |
provenance: false |