Skip to content

update go version in ci (#1439) #34

update go version in ci (#1439)

update go version in ci (#1439) #34

Workflow file for this run

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 }}