Bump bb8 from 0.8.1 to 0.8.6 (#709) #217
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |