aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorPamplemousse <xav.maso@gmail.com>2021-02-08 14:04:07 -0700
committerPamplemousse <xav.maso@gmail.com>2021-02-08 20:36:06 -0700
commita124540e50e8414f49e55586e0f8064808c42709 (patch)
tree78fd0531eec1faf6677e455be3889854a7b30116 /.github
parent068bef5eab942df0a133c92522f2ab81b28ac636 (diff)
downloadAFLplusplus-a124540e50e8414f49e55586e0f8064808c42709.tar.gz
Use GitHub Actions to build Docker image
... then deploy to hub.docker.com . Signed-off-by: Pamplemousse <xav.maso@gmail.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build_aflplusplus_docker.yaml27
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..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