40 lines
1 KiB
YAML
40 lines
1 KiB
YAML
|
name: 'CD: Push Docker Images'
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ trunk ]
|
||
|
workflow_dispatch:
|
||
|
|
||
|
jobs:
|
||
|
push_to_ghcr:
|
||
|
name: Push Image to GitHub Packages
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Check out the repo
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
- name: Push to GitHub Packages
|
||
|
uses: docker/build-push-action@v1
|
||
|
with:
|
||
|
username: ${{ github.actor }}
|
||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||
|
registry: docker.pkg.github.com
|
||
|
repository: diced/zipline/zipline
|
||
|
dockerfile: Dockerfile
|
||
|
tag_with_ref: true
|
||
|
|
||
|
push_to_dockerhub:
|
||
|
name: Push Image to Docker Hub
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Check out the repo
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
- name: Push to Docker Hub
|
||
|
uses: docker/build-push-action@v1
|
||
|
with:
|
||
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||
|
repository: diced/zipline
|
||
|
dockerfile: Dockerfile
|
||
|
tag_with_ref: true
|