Skip to content

testing

testing #3

Workflow file for this run

name: Build with BuildKit
on:
workflow_dispatch:
push:
branches:
- main
jobs:
build:
runs-on: self-hosted
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Build using remote BuildKit
run: |
echo "Build using remote BuildKit complete"
echo "Address $BUILDKIT_ADDR"
buildctl \
--addr "$BUILDKIT_ADDR" \
build \
--frontend dockerfile.v0 \
--local context=. \
--local dockerfile=. \
--output type=image,name=ghcr.io/dotdashnotdotsoftware/qrgo:latest,push=false