nuclei/.github/workflows/release-binary.yml

27 lines
506 B
YAML
Raw Normal View History

2021-06-15 16:01:56 +00:00
name: 🎉 Release Binary
2020-06-01 19:34:57 +00:00
on:
2022-01-13 13:17:52 +00:00
push:
tags:
- '*'
2021-06-15 16:01:56 +00:00
workflow_dispatch:
2020-06-01 19:34:57 +00:00
2020-07-13 17:34:08 +00:00
jobs:
release:
2020-06-01 19:34:57 +00:00
runs-on: ubuntu-latest
2021-10-18 21:01:25 +00:00
2020-07-13 17:34:08 +00:00
steps:
2021-10-18 21:01:25 +00:00
- uses: actions/checkout@v2
2020-07-13 17:34:08 +00:00
with:
fetch-depth: 0
2021-10-18 21:01:25 +00:00
- uses: actions/setup-go@v2
2020-07-13 17:34:08 +00:00
with:
2021-09-01 10:10:53 +00:00
go-version: 1.17
2021-10-18 21:01:25 +00:00
- uses: goreleaser/goreleaser-action@v2
2020-07-13 17:34:08 +00:00
with:
args: "release --rm-dist"
2021-03-14 07:07:41 +00:00
version: latest
2021-10-18 21:01:25 +00:00
workdir: v2/
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"