Skip to content

🚸 style: js route more friendly #21

🚸 style: js route more friendly

🚸 style: js route more friendly #21

Workflow file for this run

name: build and release
on:
push:
tags:
- "v*.*.*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22
- name: Build
run: |
GOOS=linux GOARCH=amd64 go build -o busuanzi-linux-amd64-${{ github.ref_name }}
GOOS=linux GOARCH=arm64 go build -o busuanzi-linux-arm64-${{ github.ref_name }}
GOOS=darwin GOARCH=amd64 go build -o busuanzi-darwin-amd64-${{ github.ref_name }}
GOOS=darwin GOARCH=arm64 go build -o busuanzi-darwin-arm64-${{ github.ref_name }}
GOOS=windows GOARCH=amd64 go build -o busuanzi-windows-amd64-${{ github.ref_name }}.exe
GOOS=windows GOARCH=arm64 go build -o busuanzi-windows-arm64-${{ github.ref_name }}.exe
GOOS=windows GOARCH=386 go build -o busuanzi-windows-386-${{ github.ref_name }}.exe
- name: Archive
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
busuanzi-linux-amd64-${{ github.ref_name }}
busuanzi-linux-arm64-${{ github.ref_name }}
busuanzi-darwin-amd64-${{ github.ref_name }}
busuanzi-darwin-arm64-${{ github.ref_name }}
busuanzi-windows-amd64-${{ github.ref_name }}.exe
busuanzi-windows-arm64-${{ github.ref_name }}.exe
busuanzi-windows-386-${{ github.ref_name }}.exe
token: ${{ secrets.GITHUB_TOKEN }}
tag_name: ${{ github.ref_name }}
body: ${{ github.event.release.body }}
draft: true