diff options
| author | van Hauser <vh@thc.org> | 2021-02-14 22:42:13 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-14 22:42:13 +0100 |
| commit | 98fd50f78f2a41a232d5e979dc6e90300dd4335e (patch) | |
| tree | 52d189c548b73e4500380f204ba51b7cd4a0e9c6 /.github | |
| parent | 95561ec5a7f7cd87d97c6e2882699c144a959172 (diff) | |
| parent | 91f2f057e4eacab4cd3a1a11cde157e3a31470d0 (diff) | |
| download | afl++-98fd50f78f2a41a232d5e979dc6e90300dd4335e.tar.gz | |
Merge branch 'stable' into dev
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build_aflplusplus_docker.yaml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/.github/workflows/build_aflplusplus_docker.yaml b/.github/workflows/build_aflplusplus_docker.yaml new file mode 100644 index 00000000..be8d795d --- /dev/null +++ b/.github/workflows/build_aflplusplus_docker.yaml @@ -0,0 +1,27 @@ +name: Publish Docker Images +on: + push: + branches: [ stable ] + paths: + - Dockerfile + pull_request: + branches: [ stable ] + paths: + - Dockerfile +jobs: + push_to_registry: + name: Push Docker images to Dockerhub + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: Login to Dockerhub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_TOKEN }} + - name: Publish aflpp to Registry + uses: docker/build-push-action@v2 + with: + context: . + push: true + tags: aflplusplus/aflplusplus:latest |
