-
Notifications
You must be signed in to change notification settings - Fork 6
52 lines (51 loc) · 1.72 KB
/
internal_release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: Lama2 Release
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+*'
jobs:
releases-matrix:
permissions: write-all
name: Release Go Binary
runs-on: ubuntu-latest
strategy:
matrix:
# build and publish in parallel: linux/386, linux/amd64, linux/arm64, windows/386, windows/amd64, darwin/amd64, darwin/arm64
goos: [linux, windows, darwin]
goarch: ["386", amd64, arm64]
exclude:
- goarch: "386"
goos: darwin
- goarch: arm64
goos: windows
steps:
- uses: actions/checkout@v3
- uses: wangyoucao577/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
goversion: "https://dl.google.com/go/go1.19.3.linux-amd64.tar.gz"
binary_name: "l2"
extra_files: LICENSE README.md
ldflags: -X main.version=${{ github.ref_name }}
build_flags: '-tags=cli'
# Separate job for Wasm build
# wasm-build:
# permissions: write-all
# name: Build WebAssembly Binary
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: wangyoucao577/[email protected]
# with:
# go-version: "https://dl.google.com/go/go1.19.3.linux-amd64.tar.gz"
# github_token: ${{ secrets.GITHUB_TOKEN }}
# goos: js
# goarch: wasm
# goversion: "https://dl.google.com/go/go1.19.3.linux-amd64.tar.gz"
# binary_name: "l2.wasm"
# extra_files: LICENSE README.md
# ldflags: -X main.version=${{ github.ref_name }}
# build_flags: |
# -tags=wasm -a -gcflags="all=-l -wb=false -ldflags="-w -s"