mirror of
https://github.com/postgresml/pgcat.git
synced 2026-03-23 09:26:30 +00:00
21 lines
633 B
YAML
21 lines
633 B
YAML
name: publish-ci-docker-image
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
jobs:
|
|
publish-ci-docker-image:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Login to GitHub Container Registry
|
|
uses: docker/login-action@v1
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Build CI Docker image
|
|
run: |
|
|
docker build . -f Dockerfile.ci --tag ghcr.io/postgresml/pgcat-ci:latest
|
|
docker run ghcr.io/postgresml/pgcat-ci:latest
|
|
docker push ghcr.io/postgresml/pgcat-ci:latest
|