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

Merge pull request #8 from StackVista/STAC-23429 #9

Merge pull request #8 from StackVista/STAC-23429

Merge pull request #8 from StackVista/STAC-23429 #9

Workflow file for this run

name: Go
on:
push:
tags:
- "RELEASE.*"
permissions:
contents: write
jobs:
build:
name: Release
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.24.6
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Build
env:
GO111MODULE: on
run: |
make crosscompile
- name: Release
env:
GH_TOKEN: ${{ github.token }}
run: |
gh release create ${{ github.ref_name }} -t ${{ github.ref_name }} -d
echo 'Uploading files in bin/*:'
ls bin/*
gh release upload ${{ github.ref_name }} bin/*