Skip to content

build

build #1

Workflow file for this run

name: build
on:
push:
branches:
- "main"
paths:
- "./**.go"
workflow_dispatch:
jobs:
docker:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Docker build
uses: ./.github/actions/build
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
image_name: ${{ github.repository }}