2022-01-29 11:24:07 +00:00
|
|
|
name: 📑 Template-DB Indexer
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2022-03-23 15:25:35 +00:00
|
|
|
branches:
|
|
|
|
- master
|
2022-01-29 11:24:07 +00:00
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
index:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/setup-go@v2
|
|
|
|
with:
|
|
|
|
go-version: 1.17
|
|
|
|
|
|
|
|
- name: Intalling Indexer
|
|
|
|
run: |
|
|
|
|
git config --global url."https://${{ secrets.ACCESS_TOKEN }}@github".insteadOf https://github
|
|
|
|
git clone https://github.com/projectdiscovery/nucleish-api.git
|
|
|
|
cd nucleish-api/cmd/generate-index/
|
|
|
|
go install
|
|
|
|
|
|
|
|
- name: Generate Index
|
|
|
|
env:
|
|
|
|
AWS_ACCESS_KEY: ${{ secrets.AWS_ACCESS_KEY }}
|
|
|
|
AWS_SECRET_KEY: ${{ secrets.AWS_SECRET_KEY }}
|
|
|
|
run: |
|
2022-02-27 11:03:05 +00:00
|
|
|
generate-index -mode templates
|