Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
canifa_note
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vũ Hoàng Anh
canifa_note
Commits
ae957439
Commit
ae957439
authored
Nov 02, 2024
by
Steven
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: update build action
parent
4b28dfdd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
7 deletions
+15
-7
build-and-push-stable-image.yml
.github/workflows/build-and-push-stable-image.yml
+15
-7
No files found.
.github/workflows/build-and-push-stable-image.yml
View file @
ae957439
...
...
@@ -3,8 +3,9 @@ name: build-and-push-stable-image
on
:
push
:
tags
:
#
Run on pushing tags like 'v1.0
.0'
#
Match stable and rc versions, such as 'v1.0.0' or 'v0.23.0-rc
.0'
-
"
v*.*.*"
-
"
v*.*.*-rc.*"
jobs
:
build-and-push-stable-image
:
...
...
@@ -19,9 +20,13 @@ jobs:
uses
:
docker/setup-qemu-action@v3
-
name
:
Extract build args
# Extract version from tag name
# Example: tag name `v1.0.0` sets up env.VERSION=1.0.0
# Extract version number and check if it's an rc version
run
:
|
if [[ "${GITHUB_REF_NAME}" =~ -rc ]]; then
echo "PRE_RELEASE=true" >> $GITHUB_ENV
else
echo "PRE_RELEASE=false" >> $GITHUB_ENV
fi
echo "VERSION=${GITHUB_REF_NAME#v}" >> $GITHUB_ENV
-
name
:
Login to Docker Hub
...
...
@@ -52,11 +57,14 @@ jobs:
neosmemo/memos
ghcr.io/usememos/memos
tags
:
|
type=semver,pattern={{version}},value=${{ env.VERSION }}
type=semver,pattern={{major}}.{{minor}},value=${{ env.VERSION }}
type=raw,value=stable
# For stable versions, add stable and latest tags
${{ env.PRE_RELEASE == 'false' && "type=semver,pattern={{version}},value=${{ env.VERSION }}" }}
${{ env.PRE_RELEASE == 'false' && "type=semver,pattern={{major}}.{{minor}},value=${{ env.VERSION }}" }}
${{ env.PRE_RELEASE == 'false' && "type=raw,value=stable" }}
# For rc versions, only add rc tag
${{ env.PRE_RELEASE == 'true' && "type=raw,value=${{ env.VERSION }}" }}
flavor
:
|
latest=
true
latest=
${{ env.PRE_RELEASE == 'false' }}
labels
:
|
org.opencontainers.image.version=${{ env.VERSION }}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment