mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2026-02-18 00:13:14 +08:00
41 lines
1.0 KiB
YAML
41 lines
1.0 KiB
YAML
name: 🎉 Release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
workflow_dispatch: {}
|
|
|
|
jobs:
|
|
pgo:
|
|
name: "Generate PGO"
|
|
uses: ./.github/workflows/generate-pgo.yaml
|
|
|
|
release:
|
|
name: "Release"
|
|
needs: ["pgo"]
|
|
runs-on: ubuntu-latest-16-cores
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: actions/download-artifact@v6
|
|
with:
|
|
name: "pgo"
|
|
path: "cmd/nuclei/"
|
|
- uses: projectdiscovery/actions/setup/go@v1
|
|
with:
|
|
go-version: "stable"
|
|
- uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_TOKEN }}
|
|
- 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 }}"
|