Skip to content

Commit

Permalink
✨ feat(.github/workflows): Add and modify Postgresql-related workfl…
Browse files Browse the repository at this point in the history
…ow files.

♻️ refactor(`.github/workflows/postgres-build.yml`): Update tags in the build workflow.
  • Loading branch information
vnobo committed Dec 12, 2024
1 parent d887dcb commit a51a136
Show file tree
Hide file tree
Showing 3 changed files with 128 additions and 21 deletions.
25 changes: 4 additions & 21 deletions .github/workflows/postgres-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,36 +43,19 @@ jobs:
id: meta
uses: docker/metadata-action@v5
with:
flavor: |
latest=auto
images: |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
alexbob/${{ 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}},value=17
type=semver,pattern={{major}}.{{minor}}
type=sha
${{ env.POSTGRES_VERSION }}
- name: Build and push Docker images
uses: docker/build-push-action@v6
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ env.POSTGRES_VERSION }}
labels: ${{ steps.meta.outputs.labels }}
- name: Build and push Docker images
uses: docker/build-push-action@v6
with:
context: ./zhparser
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ env.POSTGRES_VERSION }}-zhparser,zhparser
labels: ${{ steps.meta.outputs.labels }}

- name: Build and push Docker images
uses: docker/build-push-action@v6
with:
context: ./postgis
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ env.POSTGRES_VERSION }}-postgis,latest,postgis
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
62 changes: 62 additions & 0 deletions .github/workflows/postgres-postgis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# 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 Postgis Build
run-name: ${{ github.actor }} is Build Postgresql Actions
on:
schedule:
- cron: "0 10 * * *"
push:
branches: [ "main","15","16" ]
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:
environment: base
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- 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 }}

# Extract metadata (tags, labels) for Docker
# https://github.com/docker/metadata-action
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
flavor: |
latest=auto
suffix=postgis
images: |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
alexbob/${{ env.IMAGE_NAME }}
# generate Docker tags based on the following events/attributes
tags: |
${{ env.POSTGRES_VERSION }}
- name: Build and push Docker images
uses: docker/build-push-action@v6
with:
context: ./postgis
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
62 changes: 62 additions & 0 deletions .github/workflows/postgres-zhparer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# 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 Zhparer Build
run-name: ${{ github.actor }} is Build Postgresql Actions
on:
schedule:
- cron: "0 10 * * *"
push:
branches: [ "main","15","16" ]
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:
environment: base
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- 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 }}

# Extract metadata (tags, labels) for Docker
# https://github.com/docker/metadata-action
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
flavor: |
latest=auto
suffix=zhparer
images: |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
alexbob/${{ env.IMAGE_NAME }}
# generate Docker tags based on the following events/attributes
tags: |
${{ env.POSTGRES_VERSION }}
- name: Build and push Docker images
uses: docker/build-push-action@v6
with:
context: ./zhparser
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit a51a136

Please sign in to comment.