diff options
author | Ruben ten Hove <git@rhtenhove.nl> | 2022-06-18 08:31:37 -0400 |
---|---|---|
committer | Ruben ten Hove <git@rhtenhove.nl> | 2022-06-18 08:31:37 -0400 |
commit | 51a88b17b318768b95442a74358f056768146d57 (patch) | |
tree | 4bb5f4eaa05dbbe3560d641061f4409928ba4e72 | |
parent | b0e58baca2e5f67ce7304545e656868005ff73bd (diff) | |
download | afl++-51a88b17b318768b95442a74358f056768146d57.tar.gz |
add tagged releases
-rw-r--r-- | .github/workflows/build_aflplusplus_docker.yaml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/build_aflplusplus_docker.yaml b/.github/workflows/build_aflplusplus_docker.yaml index 9ff8312a..7245a84e 100644 --- a/.github/workflows/build_aflplusplus_docker.yaml +++ b/.github/workflows/build_aflplusplus_docker.yaml @@ -5,6 +5,8 @@ on: branches: - stable - dev + tags: + - '*' jobs: push_to_registry: @@ -37,3 +39,11 @@ jobs: push: true tags: aflplusplus/aflplusplus:${{ github.ref_name }},aflplusplus/aflplusplus:latest if: ${{ github.ref_name == 'stable' }} + - name: Publish tagged release to docker.io registry + uses: docker/build-push-action@v3 + with: + context: . + platforms: linux/amd64,linux/arm64 + push: true + tags: aflplusplus/aflplusplus:${{ github.ref_name }} + if: ${{ github.ref_type == 'tag' }} |