nezha/.github/workflows/agent.yml

28 lines
575 B
YAML
Raw Normal View History

2020-11-29 09:17:40 -05:00
name: Agent release
on:
push:
paths-ignore:
- "script/**"
- ".gitignore"
- "*.md"
2020-11-29 09:17:40 -05:00
- "cmd/dashboard/**"
- ".github/dashboard.yaml"
tags:
- "v*"
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
if: startsWith(github.ref, 'refs/tags/')
with:
version: latest
go-version: 1.10.8
2020-11-29 09:17:40 -05:00
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}