1
0
mirror of https://github.com/usememos/memos.git synced 2025-02-06 09:45:29 +00:00

chore: update release action by branch

This commit is contained in:
Steven 2025-02-06 09:15:12 +08:00
parent 84ef3558ab
commit dfacb33abe

View File

@ -3,8 +3,8 @@ name: build-and-push-release-image
on:
push:
branches:
# Run on pushing branches like 'v1.0.0', 'v0.22.2rc'
- "v*"
# Run on pushing branches like 'release/1.0.0'.
- "release/*"
jobs:
build-and-push-release-image:
@ -20,9 +20,9 @@ jobs:
- name: Extract build args
# Extract version from tag name
# Example: tag name `v1.0.0` sets up env.VERSION=1.0.0
# Example: tag name `release/1.0.0` sets up env.VERSION=1.0.0
run: |
echo "VERSION=${GITHUB_REF_NAME#v}" >> $GITHUB_ENV
echo "VERSION=${GITHUB_REF_NAME#release/}" >> $GITHUB_ENV
- name: Login to Docker Hub
uses: docker/login-action@v3