Skip to content

fix(release):correct name #34

fix(release):correct name

fix(release):correct name #34

Workflow file for this run

name: Build go binaries
on: push
jobs:
build-stamusctl:
runs-on: ${{ matrix.runner }}
strategy:
matrix:
include:
- { runner: ubuntu-latest, os: linux, arch: amd64, go-version: 1.22 }
# - { runner: macos-latest, os: darwin, arch: amd64, go-version: 1.22 }
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: make cli
- name: Upload
uses: actions/upload-artifact@v4
with:
name: stamusctl-${{matrix.os}}-${{matrix.arch}}
path: dist/*
build-stamusdaemon:
runs-on: ${{ matrix.runner }}
strategy:
matrix:
include:
- { runner: ubuntu-latest, os: linux, arch: amd64, go-version: 1.22 }
# - { runner: macos-latest, os: darwin, arch: amd64, go-version: 1.22 }
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: make daemon
- name: Upload
uses: actions/upload-artifact@v4
with:
name: stamusd-${{matrix.os}}-${{matrix.arch}}
path: dist/*