From fae55b724fac58fab13c3fefc1cbfd059a7c0916 Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Tue, 17 Sep 2024 14:35:05 +0200 Subject: [PATCH] =?UTF-8?q?.gitea/workflows/=09build-=5Fnopush=5Fcloudnati?= =?UTF-8?q?ve-pg.yml=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../\tbuild-_nopush_cloudnative-pg.yml" | 46 +++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 ".gitea/workflows/\tbuild-_nopush_cloudnative-pg.yml" diff --git "a/.gitea/workflows/\tbuild-_nopush_cloudnative-pg.yml" "b/.gitea/workflows/\tbuild-_nopush_cloudnative-pg.yml" new file mode 100644 index 0000000..3e8bd7e --- /dev/null +++ "b/.gitea/workflows/\tbuild-_nopush_cloudnative-pg.yml" @@ -0,0 +1,46 @@ +name: Create postgresql docker image +run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 +on: + push: + branches: + - devel + paths: + - '*Dockerfile-cloudnative-pg' + +jobs: + Explore-Gitea-Actions: + runs-on: ubuntu-latest + env: + REGISTRY: registry.tuxnet.lan + IMAGE: db/postgresql + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + + - name: Set up Docker BuildX + uses: docker/setup-buildx-action@v2 + with: # replace it with your local IP + config-inline: | + [registry."registry.tuxnet.lan"] + http = true + insecure = true + + - name: Set Docker Version + id: get_version + run: | + DOCKER_VERSION=$(grep -oP '(?<=^FROM ghcr.io/cloudnative-pg/postgresql:).*' Dockerfile-cloudnative-pg) + echo "Docker version: $DOCKER_VERSION" + echo "::set-output name=tag::$DOCKER_VERSION" + + - name: Build and push + uses: docker/build-push-action@v4 + with: + context: . + file: ./Dockerfile-postgresql + platforms: | + linux/amd64 + push: false + tags: ${{ env.REGISTRY }}/${{ env.IMAGE }}:${{ steps.get_version.outputs.tag }}-cloudnative \ No newline at end of file