Handle env numbers as js numbers #69
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will build a golang project | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go | |
name: Build and release binaries | |
on: | |
push: | |
tags: | |
- "v*.*.*-alpha" | |
jobs: | |
build-linux: | |
if: startsWith(github.ref, 'refs/tags/') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23' | |
- name: Build | |
run: go build -o k8x-linux-x86_64 . | |
- name: Upload Go test results | |
uses: actions/upload-artifact@v4 | |
with: | |
retention-days: 7 | |
name: k8x-linux-x86_64 | |
path: ./k8x-linux-x86_64 | |
build-macos: | |
if: startsWith(github.ref, 'refs/tags/') | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23' | |
- name: Build | |
run: go build -o k8x-darwin-x86_64 . | |
- name: Upload Go test results | |
uses: actions/upload-artifact@v4 | |
with: | |
retention-days: 7 | |
name: k8x-darwin-x86_64 | |
path: ./k8x-darwin-x86_64 | |
build-windows: | |
if: startsWith(github.ref, 'refs/tags/') | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23' | |
- name: Build | |
run: go build -o k8x-windows-x86_64.exe . | |
- name: Upload Go test results | |
uses: actions/upload-artifact@v4 | |
with: | |
retention-days: 7 | |
name: k8x-windows-x86_64.exe | |
path: ./k8x-windows-x86_64.exe | |
release: | |
if: startsWith(github.ref, 'refs/tags/') | |
permissions: | |
contents: write | |
needs: | |
- build-windows | |
- build-linux | |
- build-macos | |
runs-on: ubuntu-latest | |
steps: | |
# Downloads all artifacts: | |
- name: Download a single artifact | |
uses: actions/download-artifact@v4 | |
- name: Create github release | |
uses: ncipollo/release-action@v1 | |
with: | |
artifacts: "./*/k8x-*" |