mirror of
https://github.com/nxtrace/NTrace-core.git
synced 2025-08-12 06:26:39 +00:00
28 lines
852 B
YAML
28 lines
852 B
YAML
on:
|
|
push: # 每次 push 的时候触发
|
|
|
|
name: Build Release
|
|
jobs:
|
|
release:
|
|
if: startsWith(github.ref, 'refs/tags/') # 只有这次 Commit 是 创建 Tag 时,才进行后续发布操作
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master # checkout 代码
|
|
- uses: actions/setup-go@v2 # 配置 Go 环境
|
|
with:
|
|
go-version: "1.18" # 改成自己的版本
|
|
|
|
- run: bash .cross_compile.sh
|
|
|
|
- name: Release
|
|
uses: softprops/action-gh-release@v1
|
|
with: # 将下述可执行文件 release 上去
|
|
draft: false # Release草稿
|
|
files: |
|
|
dist/nexttrace_darwin_amd64
|
|
dist/nexttrace_darwin_arm64
|
|
dist/nexttrace_linux_amd64
|
|
dist/nexttrace_linux_arm64
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|