2020-11-03 14:11:59 +00:00
|
|
|
name: binary release
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- '[0-9]+.[0-9]+.[0-9]+'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Get the version
|
|
|
|
id: get_version
|
|
|
|
run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3)
|
|
|
|
|
|
|
|
- name: checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Setup Go
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
with:
|
|
|
|
go-version: '1.13.0'
|
|
|
|
|
|
|
|
- name: Build
|
2020-12-11 12:57:24 +00:00
|
|
|
run: make -j $(nproc) compile
|
2020-11-03 14:11:59 +00:00
|
|
|
|
|
|
|
- name: create release
|
|
|
|
id: create_release
|
|
|
|
uses: actions/create-release@latest
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
tag_name: ${{ steps.get_version.outputs.VERSION }}
|
2020-12-11 12:57:24 +00:00
|
|
|
release_name: multini ${{ steps.get_version.outputs.VERSION }}
|
2020-11-03 14:11:59 +00:00
|
|
|
draft: false
|
|
|
|
prerelease: false
|
|
|
|
|
|
|
|
- name: darwin-386
|
|
|
|
uses: actions/upload-release-asset@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
|
|
asset_path: ./bin/${{ github.event.repository.name }}-darwin-386
|
|
|
|
asset_name: ${{ github.event.repository.name }}-darwin-386
|
|
|
|
asset_content_type: application/octet-stream
|
|
|
|
|
|
|
|
- name: darwin-amd64
|
|
|
|
uses: actions/upload-release-asset@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
|
|
asset_path: ./bin/${{ github.event.repository.name }}-darwin-amd64
|
|
|
|
asset_name: ${{ github.event.repository.name }}-darwin-amd64
|
|
|
|
asset_content_type: application/octet-stream
|
|
|
|
|
|
|
|
- name: freebsd-386
|
|
|
|
uses: actions/upload-release-asset@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
|
|
asset_path: ./bin/${{ github.event.repository.name }}-freebsd-386
|
|
|
|
asset_name: ${{ github.event.repository.name }}-freebsd-386
|
|
|
|
asset_content_type: application/octet-stream
|
|
|
|
|
|
|
|
- name: freebsd-amd64
|
|
|
|
uses: actions/upload-release-asset@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
|
|
asset_path: ./bin/${{ github.event.repository.name }}-freebsd-amd64
|
|
|
|
asset_name: ${{ github.event.repository.name }}-freebsd-amd64
|
|
|
|
asset_content_type: application/octet-stream
|
|
|
|
|
|
|
|
- name: linux-386
|
|
|
|
uses: actions/upload-release-asset@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
|
|
asset_path: ./bin/${{ github.event.repository.name }}-linux-386
|
|
|
|
asset_name: ${{ github.event.repository.name }}-linux-386
|
|
|
|
asset_content_type: application/octet-stream
|
|
|
|
|
|
|
|
- name: linux-amd64
|
|
|
|
uses: actions/upload-release-asset@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
|
|
asset_path: ./bin/${{ github.event.repository.name }}-linux-amd64
|
|
|
|
asset_name: ${{ github.event.repository.name }}-linux-amd64
|
|
|
|
asset_content_type: application/octet-stream
|
|
|
|
|
|
|
|
- name: windows-386
|
|
|
|
uses: actions/upload-release-asset@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
|
|
asset_path: ./bin/${{ github.event.repository.name }}-windows-386.exe
|
|
|
|
asset_name: ${{ github.event.repository.name }}-windows-386.exe
|
|
|
|
asset_content_type: application/octet-stream
|
|
|
|
|
|
|
|
- name: windows-amd64
|
|
|
|
uses: actions/upload-release-asset@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
|
|
asset_path: ./bin/${{ github.event.repository.name }}-windows-amd64.exe
|
|
|
|
asset_name: ${{ github.event.repository.name }}-windows-amd64.exe
|
|
|
|
asset_content_type: application/octet-stream
|
|
|
|
|