2020-11-29 09:17:40 -05:00
|
|
|
name: Agent release
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- "script/**"
|
|
|
|
- ".gitignore"
|
2020-12-06 20:38:10 -05:00
|
|
|
- "*.md"
|
2020-11-29 09:17:40 -05:00
|
|
|
- "cmd/dashboard/**"
|
2020-12-12 12:55:35 -05:00
|
|
|
- ".github/workflows/dashboard.yml"
|
2020-11-29 09:17:40 -05:00
|
|
|
tags:
|
|
|
|
- "v*"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
deploy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
2020-12-12 22:01:43 -05:00
|
|
|
- name: Set up Go latest version
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
- run: |
|
|
|
|
go mod vendor
|
2020-12-12 22:13:19 -05:00
|
|
|
mv ./vendor/* /home/runner/go/src/
|
|
|
|
git checkout .
|
2020-12-12 22:01:43 -05:00
|
|
|
- name: Set up Go 1.10.8
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
with:
|
|
|
|
go-version: 1.10.8
|
2020-11-29 09:17:40 -05:00
|
|
|
- name: Run GoReleaser
|
|
|
|
uses: goreleaser/goreleaser-action@v2
|
|
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
|
|
with:
|
|
|
|
version: latest
|
|
|
|
args: release --rm-dist
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|