-
Notifications
You must be signed in to change notification settings - Fork 34
33 lines (29 loc) · 1.02 KB
/
docker.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Publish Docker image
on:
workflow_run:
workflows: [CI]
types: [completed]
branches: [v3]
jobs:
push_to_registry:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
# Check if the tests were successful and were launched by a push event
if: ${{ github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.event == 'push' }}
steps:
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ewjoachim
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
# See Dockerfile.build for instructions on bumping this.
tags: ewjoachim/python-coverage-comment-action-base:v3
push: true
file: Dockerfile.build