Skip to content
This repository was archived by the owner on May 18, 2026. It is now read-only.

Update softprops/action-gh-release action to v2 #188

Update softprops/action-gh-release action to v2

Update softprops/action-gh-release action to v2 #188

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.21"
cache: false
- name: Install dependencies
run: go get .
- name: Build
run: go build -ldflags "-X main.Build=${{ github.ref_name }}" -v ./...