piston/.github/workflows/repo-push.yaml

31 lines
752 B
YAML
Raw Normal View History

2021-03-14 00:57:37 +01:00
name: Publish Repo image
on:
push:
branches:
- master
- v3
2021-03-14 01:00:15 +01:00
paths:
- repo/**
2021-03-14 00:57:37 +01:00
jobs:
push_to_registry:
runs-on: ubuntu-latest
name: Build and Push Docker image to Github Packages
steps:
- name: Check out repo
uses: actions/checkout@v2
- name: Login to GitHub registry
uses: docker/login-action@v1
with:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
registry: docker.pkg.github.com
- name: Build and push repo
uses: docker/build-push-action@v2
with:
context: repo
2021-03-14 04:05:11 +01:00
pull: true
2021-03-14 00:57:37 +01:00
push: true
tags: |
docker.pkg.github.com/engineer-man/piston/repo-builder