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

Merge pull request #9 from StackVista/STAC-23877 #10

Merge pull request #9 from StackVista/STAC-23877

Merge pull request #9 from StackVista/STAC-23877 #10

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.9
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/*