Merge pull request #2435 from projectdiscovery/dev #329
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 🎉 Release Binary | |
| on: | |
| push: | |
| tags: | |
| - '*' | |
| workflow_dispatch: | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest-16-cores | |
| steps: | |
| - name: "Check out code" | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: projectdiscovery/actions/setup/go@v1 | |
| - name: "Create release on GitHub" | |
| uses: goreleaser/goreleaser-action@v4 | |
| with: | |
| args: "release --clean" | |
| version: latest | |
| workdir: . | |
| env: | |
| GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
| SLACK_WEBHOOK: "${{ secrets.RELEASE_SLACK_WEBHOOK }}" | |
| DISCORD_WEBHOOK_ID: "${{ secrets.DISCORD_WEBHOOK_ID }}" | |
| DISCORD_WEBHOOK_TOKEN: "${{ secrets.DISCORD_WEBHOOK_TOKEN }}" |