-
Notifications
You must be signed in to change notification settings - Fork 0
72 lines (64 loc) · 2.55 KB
/
postgres-build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle
name: Postgresql Build
run-name: ${{ github.actor }} is Build Postgresql Actions
on:
push:
branches: [ "main","dev" ]
tags:
- "v*.*.*"
pull_request:
env:
# Use docker.io for Docker Hub if empty
REGISTRY: ghcr.io/${{ github.actor }}
# github.repository as <account>/<repo>
IMAGE_NAME: postgres
# Postgresql version
POSTGRES_VERSION: 17
jobs:
build-image:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
# Extract metadata (tags, labels) for Docker
# https://github.com/docker/metadata-action
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
images: |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
# generate Docker tags based on the following events/attributes
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=sha
- name: Log into registry ${{ env.REGISTRY }}
if: github.event_name != 'pull_request'
uses: docker/login-action@v3.3.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.PAGK_TOKEN }}
- name: Build and push Docker images
uses: docker/build-push-action@v6
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
#- name: Docker Setup Buildx
# uses: docker/setup-buildx-action@v3
#- name: Build zhparser Docker image
# run: docker buildx build --push -t ${{ vars.DOCKER_PREFIX }}/postgres:17-zhparser ./boot/postgres/zhparser
#- name: Build postgis Docker image
# run: docker buildx build --push -t ${{ vars.DOCKER_PREFIX }}/postgres:17-postgis ./boot/postgres/postgis
#- name: Build latest Docker image
# run: docker buildx build --push -t ${{ vars.DOCKER_PREFIX }}/postgres:latest ./boot/postgres/postgis