feat: build version 15 and 16, use debian bookworm for versions 11 to 16 #95
Workflow file for this run
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: Build PostgreSQL images | |
on: | |
schedule: | |
- cron: "2 2 * * SUN" | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 120 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: camptocamp/initialise-gopass-summon-action@v2 | |
with: | |
ci-gpg-private-key: ${{secrets.CI_GPG_PRIVATE_KEY}} | |
github-gopass-ci-token: ${{secrets.GOPASS_CI_GITHUB_TOKEN}} | |
patterns: docker | |
- name: "Build images" | |
env: | |
PUSH_DOCKER_HUB: false | |
PUSH_GHCR: false | |
run: | | |
make all | |
- name: "Push images" | |
env: | |
PUSH_DOCKER_HUB: true | |
PUSH_GHCR: true | |
run: | | |
make all | |
if: github.ref == 'master' |