dpaste/.github/workflows/docker.yml

28 lines
556 B
YAML
Raw Normal View History

name: Docker Image CI
# Only run after test passes
on:
workflow_run:
workflows: ["Python CI"]
types:
- completed
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
name: Check out code
- uses: mr-smithers-excellent/docker-build-push@v5
name: Build & push Docker image
with:
image: darrenofficial/dpaste
registry: docker.io
tags: latest
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}