Files
projectdiscovery-httpx/.github/workflows/release-binary.yml
T
Mzack9999 5a562107f4 Updating GH workflows + Sonar (#514)
* Updating GH workflows + Sonar

* adding missing step to build
2022-02-09 14:39:30 +05:30

30 lines
612 B
YAML

name: 🎉 Release Binary
on:
create:
tags:
- v*
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: "Check out code"
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: "Set up Go"
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: "Create release on GitHub"
uses: goreleaser/goreleaser-action@v2
with:
args: "release --rm-dist"
version: latest
workdir: .
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"