mirror of
https://github.com/postgresml/pgcat.git
synced 2026-03-25 18:06:29 +00:00
We have to build and push the docker image used in CI manually. This PR builds that image automatically and pushes it to Github docker repository. Will start using that image in a follow PR
21 lines
618 B
YAML
21 lines
618 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/levkk/pgcat-ci:latest
|
|
docker run ghcr.io/levkk/pgcat-ci:latest
|
|
docker push ghcr.io/levkk/pgcat-ci:latest
|