49 lines
1.1 KiB
YAML
49 lines
1.1 KiB
YAML
name: Main
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
env:
|
|
REGISTRY_NAME: container.localdomain
|
|
|
|
jobs:
|
|
build:
|
|
if: "contains(github.event.head_commit.message, 'CI') != true"
|
|
|
|
runs-on: docker
|
|
steps:
|
|
- uses: RouxAntoine/checkout@v4.1.8
|
|
with:
|
|
fetch-depth: 0
|
|
fetch-tags: false
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3.6.1
|
|
with:
|
|
config-inline: |
|
|
[registry."${{ env.REGISTRY_NAME }}"]
|
|
insecure = true
|
|
|
|
- name: Build and push
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
push: true
|
|
tags: ${{ env.REGISTRY_NAME }}/postgres:latest
|
|
platforms: |
|
|
linux/arm/v6
|
|
linux/amd64
|
|
linux/arm64
|
|
|
|
- uses: RouxAntoine/auto-changie@v1.0.1
|
|
|
|
- name: Push changelog
|
|
uses: stefanzweifel/git-auto-commit-action@v5
|
|
with:
|
|
commit_message: "CI: Push updated changelog"
|