Skip to content

Commit 1841d37

Browse files
committed
v4.2.1 release
1 parent 0bf1f92 commit 1841d37

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/docker.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
# and pushes them to Docker Hub under pgsty/pigsty.
1212
#
1313
# Triggers:
14-
# - On tag push matching 'v*.*.*' pattern (e.g., v4.2.0)
14+
# - On tag push matching 'v*.*.*' pattern (e.g., v4.2.1)
1515
# - Manual trigger via workflow_dispatch
1616
#
1717
# Required secrets:
1818
# - DOCKERHUB_USERNAME: Docker Hub username
1919
# - DOCKERHUB_TOKEN: Docker Hub access token (not password)
2020
#
2121
# Images produced:
22-
# - pgsty/pigsty:v4.2.0 (version tag)
22+
# - pgsty/pigsty:v4.2.1 (version tag)
2323
# - pgsty/pigsty:latest (only for release tags)
2424
#
2525
#==============================================================#
@@ -33,9 +33,9 @@ on:
3333
workflow_dispatch:
3434
inputs:
3535
version:
36-
description: 'Version tag (e.g., v4.2.0)'
36+
description: 'Version tag (e.g., v4.2.1)'
3737
required: true
38-
default: 'v4.2.0'
38+
default: 'v4.2.1'
3939
push_latest:
4040
description: 'Also tag as latest?'
4141
required: true
@@ -72,12 +72,12 @@ jobs:
7272
VERSION="${{ github.event.inputs.version }}"
7373
PUSH_LATEST="${{ github.event.inputs.push_latest }}"
7474
else
75-
# Extract version from git tag (refs/tags/v4.2.0 -> v4.2.0)
75+
# Extract version from git tag (refs/tags/v4.2.1 -> v4.2.1)
7676
VERSION="${GITHUB_REF#refs/tags/}"
7777
PUSH_LATEST="true"
7878
fi
7979
80-
# Remove 'v' prefix for Docker build arg (v4.2.0 -> 4.2.0)
80+
# Remove 'v' prefix for Docker build arg (v4.2.1 -> 4.2.1)
8181
VERSION_NUM="${VERSION#v}"
8282
8383
echo "version=${VERSION}" >> $GITHUB_OUTPUT
@@ -112,7 +112,7 @@ jobs:
112112
with:
113113
images: ${{ env.IMAGE_NAME }}
114114
tags: |
115-
# Version tag (e.g., v4.2.0)
115+
# Version tag (e.g., v4.2.1)
116116
type=raw,value=${{ steps.version.outputs.version }}
117117
# Latest tag (only when push_latest is true)
118118
type=raw,value=latest,enable=${{ steps.version.outputs.push_latest == 'true' }}

docker/.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
PIGSTY_VERSION=v4.2.0
1+
PIGSTY_VERSION=v4.2.1
22
PIGSTY_SSH_PORT=2222
33
PIGSTY_HTTP_PORT=8080
44
PIGSTY_HTTPS_PORT=8443

0 commit comments

Comments
 (0)