mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-27 21:45:25 +00:00
* Add s3 bucket template provider - Refactor the custom github template code - add interface for template provider * Validate if aws creds are passed if bucket flag - refactor s3 provider struct to take client - add function which returns the aws s3 client - update error messages * Add aws s3 bucket flags documentation in README.md - Rename the github_test.go to customTemplate_test.go * go mod update * Move template provider code to pkg/external/customtemplates dir * Remove github and aws update variables from flag * Rename CustomTemplateProvider to Provider * Update integration and function command in makefile * Update github test case, accept token * readme update * go mod tidy * Update build-test.yml * handle empty dir in s3 * Add requested changes - download/update s3 and github only when `-ut` is passed - only print the missing env variable for s3 - add the custom templates path in ~/.config/nuclei/.template-config.json * print custom paths only if exists in config file * misc update * tag update Co-authored-by: sandeep <8293321+ehsandeep@users.noreply.github.com> Co-authored-by: Sandeep Singh <sandeep@projectdiscovery.io>
50 lines
1.5 KiB
YAML
50 lines
1.5 KiB
YAML
name: ⏰ Publish Docs
|
|
|
|
on:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
docs:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v3
|
|
with:
|
|
persist-credentials: false
|
|
fetch-depth: 0
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: "Set up Go"
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: 1.18
|
|
|
|
- name: Generate YAML Syntax Documentation
|
|
id: generate-docs
|
|
run: |
|
|
if ! which dstdocgen > /dev/null; then
|
|
echo -e "Command dstdocgen not found! Installing\c"
|
|
go install github.com/projectdiscovery/yamldoc-go/cmd/docgen/dstdocgen@main
|
|
fi
|
|
go generate pkg/templates/templates.go
|
|
go build -o "cmd/docgen/docgen" cmd/docgen/docgen.go
|
|
./cmd/docgen/docgen ../SYNTAX-REFERENCE.md ../nuclei-jsonschema.json
|
|
echo "::set-output name=changes::$(git status -s | wc -l)"
|
|
working-directory: v2
|
|
|
|
- name: Commit files
|
|
if: steps.generate-docs.outputs.changes > 0
|
|
run: |
|
|
git config --local user.email "action@github.com"
|
|
git config --local user.name "GitHub Action"
|
|
git add SYNTAX-REFERENCE.md nuclei-jsonschema.json
|
|
git commit -m "Auto Generate Syntax Docs + JSONSchema [$(date)] :robot:" -a
|
|
|
|
- name: Push changes
|
|
if: steps.generate-docs.outputs.changes > 0
|
|
uses: ad-m/github-push-action@master
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
branch: ${{ github.ref }}
|