mirror of
https://github.com/projectdiscovery/subfinder
synced 2026-06-21 14:05:24 +00:00
e6ed1e1b72
* Change file extension to .yml for consistency * Move permissions for clarity and consistency * Change compat-checks action from @master to @v1 The action should be pinned to a stable ref such as @v1, consistent with the documentation and how other PD projects reference it. * Fix indentations and whitespaces in workflows
29 lines
704 B
YAML
29 lines
704 B
YAML
name: 🎉 Release Binary
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- v*
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest-16-cores
|
|
steps:
|
|
- name: "Check out code"
|
|
uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- uses: projectdiscovery/actions/setup/go@v1
|
|
|
|
- name: "Create release on GitHub"
|
|
uses: projectdiscovery/actions/goreleaser@v1
|
|
with:
|
|
release: true
|
|
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 }}"
|