diff options
author | Ruben ten Hove <ruben.tenhove@tno.nl> | 2022-06-17 21:21:34 +0200 |
---|---|---|
committer | Ruben ten Hove <ruben.tenhove@tno.nl> | 2022-06-17 21:21:34 +0200 |
commit | 4fdd1129f01cc6936f0f79668cdd52e77650718a (patch) | |
tree | 35b0ef818dc836ab8834c802d051900836e843a0 | |
parent | 80892b8fc597fcfa73bd9f105d3f0f4171a92c57 (diff) | |
download | afl++-4fdd1129f01cc6936f0f79668cdd52e77650718a.tar.gz |
feat: push both dev and stable
-rw-r--r-- | .github/workflows/build_aflplusplus_docker.yaml | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/.github/workflows/build_aflplusplus_docker.yaml b/.github/workflows/build_aflplusplus_docker.yaml index fa96da8e..b3f82453 100644 --- a/.github/workflows/build_aflplusplus_docker.yaml +++ b/.github/workflows/build_aflplusplus_docker.yaml @@ -2,7 +2,9 @@ name: Publish Docker Images on: push: - branches: [ stable ] + branches: + - stable + - dev # paths: # - Dockerfile @@ -21,10 +23,18 @@ jobs: with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_TOKEN }} - - name: Publish aflpp to Registry + - name: Publish aflpp ${{ github.ref }} to Registry + uses: docker/build-push-action@v2 + with: + context: . + platforms: linux/amd64,linux/arm64 + push: true + tags: aflplusplus/aflplusplus:${{ github.ref }} + - name: Publish aflpp dev as latest to Registry uses: docker/build-push-action@v2 with: context: . platforms: linux/amd64,linux/arm64 push: true tags: aflplusplus/aflplusplus:latest + if: "${{ github.ref }}" == "dev" |