Skip to content

Update README.md

Update README.md #15

Workflow file for this run

name: Build and Release
on:
push:
tags:
- "*"
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23
- name: Build
run: ./build_grid.sh
- name: Release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ./dist/boring-*.tar.gz
file_glob: true
tag: ${{ github.ref }}
body: "Automatic build release for version ${{ github.ref_name }}"
draft: true