fix: more restrictive workflow running #4
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 pg_idkit container | |
on: | |
- push: | |
branches: | |
- feat/infra/add-dockerfiles | |
- v[0-9]+\.[0-9]+\.[0-9]+ | |
jobs: | |
build: | |
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: Switch docker buildx | |
# run: docker buildx create --name buildx --use | |
- name: registry login | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- 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 }} |