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

39 lines
1.2 KiB
YAML
Raw Normal View History

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