asynqmon/.github/workflows/release.yml

53 lines
1.5 KiB
YAML
Raw Normal View History

2021-01-31 22:24:12 +08:00
on:
2021-02-01 02:49:33 +08:00
release:
2021-02-01 03:20:49 +08:00
types: [published, created, edited]
2021-01-31 22:24:12 +08:00
jobs:
2021-01-31 22:26:35 +08:00
release:
2021-01-31 22:24:12 +08:00
runs-on: ubuntu-latest
2021-02-01 02:49:33 +08:00
strategy:
matrix:
goos: [darwin, linux, windows]
2021-01-31 22:24:12 +08:00
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
2021-01-31 22:26:35 +08:00
2021-01-31 22:24:12 +08:00
- name: Set up Go
uses: actions/setup-go@v2
with:
2021-01-31 22:26:35 +08:00
go-version: 1.15
- name: Install Go1.16
run: go get golang.org/dl/go1.16rc1 && go1.16rc1 download
- name: Set up Node
uses: actions/setup-node@v2
2021-01-31 22:24:12 +08:00
with:
2021-01-31 22:26:35 +08:00
node-version: "12"
- name: Install NPM packages
run: cd ui && rm yarn.lock && yarn install
2021-02-01 02:49:33 +08:00
- id: release
uses: bruceadams/get-release@v1.2.2
env:
GITHUB_TOKEN: ${{ github.token }}
- name: Build release binary
2021-01-31 22:26:35 +08:00
run: |
2021-02-01 02:49:33 +08:00
GOOS=${{ matrix.goos }} GOARCH=amd64 make build
tar -czvf asynqmon_${{ steps.release.outputs.tag_name }}_${{ matrix.goos }}_amd64.tar.gz asynqmon
2021-01-31 22:26:35 +08:00
ls
2021-02-01 02:49:33 +08:00
- name: Upload release binary
uses: actions/upload-release-asset@v1.0.2
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.release.outputs.upload_url }}
asset_path: ./asynqmon_${{ steps.release.outputs.tag_name }}_${{ matrix.goos }}-amd64.tar.gz
asset_name: asynqmon_${{ steps.release.outputs.tag_name }}_${{ matrix.goos }}-amd64.tar.gz
asset_content_type: application/gzip