Skip to content
This repository was archived by the owner on Dec 27, 2025. It is now read-only.

Merge pull request #25 from williamwmarx/docs/markdown-update-1766798073 #15

Merge pull request #25 from williamwmarx/docs/markdown-update-1766798073

Merge pull request #25 from williamwmarx/docs/markdown-update-1766798073 #15

Workflow file for this run

name: Build and deploy releases
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version: '>=1.19.0'
- name: Build
run: make
- name: Deploy
run: |
gh release delete latest --yes || true
gh release create latest releases/* --title "Latest" --notes "Auto-updated on push to main"
env:
GH_TOKEN: ${{ github.token }}