mirror of
https://github.com/diced/zipline.git
synced 2026-01-07 02:04:41 -08:00
24 lines
600 B
YAML
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
|