diff options
author | vanhauser-thc <vh@thc.org> | 2021-02-09 08:30:49 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-02-09 08:30:49 +0100 |
commit | e11665564b750c1b42e1ab2edf4877d3cb833455 (patch) | |
tree | da03cee8edbf1421cddf72c808fff236939bf3b9 | |
parent | 93cebd6c7f3ca17c830d67973bd74283d374ebd1 (diff) | |
download | afl++-e11665564b750c1b42e1ab2edf4877d3cb833455.tar.gz |
fix docker build action
-rw-r--r-- | .github/workflows/build_aflplusplus_docker.yaml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build_aflplusplus_docker.yaml b/.github/workflows/build_aflplusplus_docker.yaml index 6d96824d..be8d795d 100644 --- a/.github/workflows/build_aflplusplus_docker.yaml +++ b/.github/workflows/build_aflplusplus_docker.yaml @@ -1,11 +1,11 @@ name: Publish Docker Images on: push: - branches: [ stable, dev ] + branches: [ stable ] paths: - Dockerfile pull_request: - branches: [ stable, dev ] + branches: [ stable ] paths: - Dockerfile jobs: @@ -19,9 +19,9 @@ jobs: with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_TOKEN }} - - name: Publish afl_for_r2 to Registry + - name: Publish aflpp to Registry uses: docker/build-push-action@v2 with: context: . push: true - tags: teamconclusion/aflplusplus:latest + tags: aflplusplus/aflplusplus:latest |