Skip to content

15 → 16

15 → 16 #5

Workflow file for this run

name: Build pg_backups docker image
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}
- run: |
docker build . --tag ghcr.io/shareup/pg_backups:latest
docker push ghcr.io/shareup/pg_backups:latest