mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 08:02:54 +11:00
ef278fa1d8
Co-authored-by: Renovate Bot <bot@renovateapp.com>
27 lines
556 B
YAML
27 lines
556 B
YAML
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@v3
|
|
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 }}
|