mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-18 20:55:27 +00:00
adding docker
This commit is contained in:
parent
3f5275f1c7
commit
f1146fd1bb
17
.github/workflows/dockerhub-push.yml
vendored
Normal file
17
.github/workflows/dockerhub-push.yml
vendored
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
# dockerhub-push pushes docker build to dockerhub automatically
|
||||||
|
# on the creation of a new release
|
||||||
|
name: Publish to Dockerhub on creation of a new release
|
||||||
|
on:
|
||||||
|
release:
|
||||||
|
types: [published]
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@master
|
||||||
|
- name: Publish to Dockerhub Registry
|
||||||
|
uses: elgohr/Publish-Docker-Github-Action@master
|
||||||
|
with:
|
||||||
|
name: projectdiscovery/nuclei
|
||||||
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
Loading…
x
Reference in New Issue
Block a user