Skip to content

v0.0.1

v0.0.1 #6

Workflow file for this run

name: Build and Release
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.24'
- name: Build binary
run: |
TAG_NAME=${GITHUB_REF#refs/tags/}
echo "Building for tag: $TAG_NAME"
make build
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: ./build/gateway