fix(ci): assorted CI fixes #11
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: container | |
on: | |
push: | |
branches: | |
- feat/infra/add-dockerfiles | |
- v[0-9]+\.[0-9]+\.[0-9]+ | |
jobs: | |
build: | |
permissions: | |
contents: read | |
packages: write | |
runs-on: ${{ matrix.config.gh.runner }} | |
strategy: | |
matrix: | |
config: | |
- triple: x86_64-unknown-linux-musl | |
gh: | |
runner: ubuntu-22.04 | |
container: | |
arch: amd64 | |
pg_version: 15.5 | |
os_version: alpine3.18 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: docker/setup-qemu-action@v3 | |
- uses: extractions/setup-just@v1 | |
- name: registry login | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- run: docker pull ghcr.io/vadosware/pg_idkit/base-pkg:pg15.5-alpine3.18-amd64 | |
- name: build & push container image | |
run: just build-image push-image | |
env: | |
CONTAINER_IMAGE_ARCH: ${{ matrix.config.container.arch }} | |
POSTGRES_IMAGE_VERSION: ${{ matrix.config.container.pg_version }} | |
POSTGRES_OS_IMAGE_VERSION: ${{ matrix.config.container.os_version }} |