Skip to content

Update README.md

Update README.md #19

Workflow file for this run

name: Build and publish container
on:
push:
branches:
- dev
jobs:
build:
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.23
- name: Test
run: make test
- name: Log in to Github registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
- name: Push image
run: TAG=${{ github.ref_name }} make publish