mirror of
https://github.com/usememos/memos.git
synced 2025-10-27 14:56:30 +08:00
chore: update release action by branch
This commit is contained in:
parent
84ef3558ab
commit
dfacb33abe
1 changed files with 4 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue