Release workflow builds all variants and compresses them using UPX. All files under bin/ are uploaded to the release.
38 lines
894 B
YAML
38 lines
894 B
YAML
name: Release Sense installer binaries
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*.*.*'
|
|
|
|
jobs:
|
|
|
|
release:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Set up Go 1.13
|
|
uses: actions/setup-go@v1
|
|
with:
|
|
go-version: 1.13
|
|
|
|
- uses: actions/checkout@v2
|
|
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* # Needed in makefile for versioning
|
|
- name: Set GOPATH
|
|
# temporary fix
|
|
# see https://github.com/actions/setup-go/issues/14
|
|
run: |
|
|
echo "##[set-env name=GOPATH;]$(dirname $GITHUB_WORKSPACE)"
|
|
echo "##[add-path]$(dirname $GITHUB_WORKSPACE)/bin"
|
|
shell: bash
|
|
|
|
- run: make test
|
|
- run: make xbuild-all
|
|
|
|
- name: Release
|
|
uses: softprops/action-gh-release@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
files: bin/**/*
|