diff options
| author | Stanislav Boboň | 2021-05-11 17:47:48 +0200 |
|---|---|---|
| committer | Stanislav Boboň | 2021-05-11 17:47:48 +0200 |
| commit | ffafebbabcd0aac1deba8dca7cd4c13b0cbbb031 (patch) | |
| tree | 7fcbc40b34b86ee13daec326dde99811fc5e8d21 /.github/workflows/docker-image.yml | |
| parent | 6c68b465bc592b517c4ebdfacbd977502647cbdb (diff) | |
| parent | e3c002a63725e9e79ce81a09a7c7055c61ba5010 (diff) | |
| download | sec-certs-ffafebbabcd0aac1deba8dca7cd4c13b0cbbb031.tar.gz sec-certs-ffafebbabcd0aac1deba8dca7cd4c13b0cbbb031.tar.zst sec-certs-ffafebbabcd0aac1deba8dca7cd4c13b0cbbb031.zip | |
Merge branch 'dev' into fips
Diffstat (limited to '.github/workflows/docker-image.yml')
| -rw-r--r-- | .github/workflows/docker-image.yml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml new file mode 100644 index 00000000..fc0ca7f0 --- /dev/null +++ b/.github/workflows/docker-image.yml @@ -0,0 +1,30 @@ +# code created with help of the github documentation : https://docs.github.com/en/actions/guides/publishing-docker-images + +name: Docker Image CI + +on: + push: + branches: [master] + pull_request: + branches: [master] + workflow_dispatch: + +jobs: + docker: + runs-on: ubuntu-latest + steps: + - name: Set up QEMU + uses: docker/setup-qemu-action@v1 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + - name: Login to DockerHub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_PASSWORD }} + - name: Build and push + id: docker_build + uses: docker/build-push-action@v2 + with: + push: true + tags: seccerts/sec-certs:latest |
