Skip to content

Update beta.yml

Update beta.yml #3

Workflow file for this run

name: Threadfin Beta Build
on:
push:
branches:
- beta
permissions:
contents: write
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
with:
ref: beta
- name: Set up and Build
uses: actions/setup-go@v5
with:
go-version: 1.22
id: go
- name: Build binaries
run: |
go mod tidy && go mod vendor
bash ${GITHUB_WORKSPACE}/Utility/create_binaries.sh beta
- name: Create a Release
uses: softprops/action-gh-release@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
prerelease: true
name: Development Build
tag_name: latest-beta
files: dist/*