Files
zipline/.github/workflows/docker.yml
2020-12-21 13:23:03 -08:00

24 lines
600 B
YAML

name: Publish Zipline Docker Image
on:
push:
branches:
- master
paths:
- '**'
jobs:
push_to_registry:
name: Push Docker 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
dockerfile: Dockerfile
tag_with_ref: true