-
Notifications
You must be signed in to change notification settings - Fork 290
79 lines (66 loc) · 1.71 KB
/
go.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name: Go
# new tag event
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: command
run: bash ./.gha.script.bash
- name: command
run: bash ./.gha.deploy.bash
- name: Create Release
id: create_release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
Change Log
- tracking destroyed contract
- add wasm debug info
draft: false
prerelease: false
- name: Release with attachment
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
ontology-linux-amd64
tool-linux.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
build-macos:
# after build ok, we patch macos version binary
needs: build
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: command
run: |
brew install md5sha1sum
- name: command
run: bash ./.gha.deploy.bash
- name: Release with attachment
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
ontology-darwin-amd64
tool-darwin.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}