From a124540e50e8414f49e55586e0f8064808c42709 Mon Sep 17 00:00:00 2001 From: Pamplemousse Date: Mon, 8 Feb 2021 14:04:07 -0700 Subject: Use GitHub Actions to build Docker image ... then deploy to hub.docker.com . Signed-off-by: Pamplemousse --- .github/workflows/build_aflplusplus_docker.yaml | 27 +++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/build_aflplusplus_docker.yaml (limited to '.github') diff --git a/.github/workflows/build_aflplusplus_docker.yaml b/.github/workflows/build_aflplusplus_docker.yaml new file mode 100644 index 00000000..6d96824d --- /dev/null +++ b/.github/workflows/build_aflplusplus_docker.yaml @@ -0,0 +1,27 @@ +name: Publish Docker Images +on: + push: + branches: [ stable, dev ] + paths: + - Dockerfile + pull_request: + branches: [ stable, dev ] + 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 afl_for_r2 to Registry + uses: docker/build-push-action@v2 + with: + context: . + push: true + tags: teamconclusion/aflplusplus:latest -- cgit 1.4.1 From e11665564b750c1b42e1ab2edf4877d3cb833455 Mon Sep 17 00:00:00 2001 From: vanhauser-thc Date: Tue, 9 Feb 2021 08:30:49 +0100 Subject: fix docker build action --- .github/workflows/build_aflplusplus_docker.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to '.github') 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 -- cgit 1.4.1