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
f394e946
Unverified
Commit
f394e946
authored
Apr 15, 2026
by
boojack
Committed by
GitHub
Apr 15, 2026
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: add release-please automation (#5842)
parent
5be530db
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
81 additions
and
1 deletion
+81
-1
build-canary-image.yml
.github/workflows/build-canary-image.yml
+3
-0
release-please.yml
.github/workflows/release-please.yml
+37
-0
release.yml
.github/workflows/release.yml
+3
-1
.release-please-manifest.json
.release-please-manifest.json
+3
-0
release-please-config.json
release-please-config.json
+35
-0
No files found.
.github/workflows/build-canary-image.yml
View file @
f394e946
...
...
@@ -8,6 +8,9 @@ concurrency:
group
:
${{ github.workflow }}-${{ github.repository }}
cancel-in-progress
:
true
permissions
:
contents
:
read
jobs
:
build-frontend
:
runs-on
:
ubuntu-latest
...
...
.github/workflows/release-please.yml
0 → 100644
View file @
f394e946
name
:
Release Please
on
:
push
:
branches
:
-
main
workflow_dispatch
:
permissions
:
contents
:
write
issues
:
write
pull-requests
:
write
concurrency
:
group
:
${{ github.workflow }}-${{ github.ref }}
cancel-in-progress
:
true
jobs
:
release-please
:
runs-on
:
ubuntu-latest
steps
:
-
name
:
Check release token
env
:
RELEASE_PLEASE_TOKEN
:
${{ secrets.RELEASE_PLEASE_TOKEN }}
run
:
|
if [ -z "$RELEASE_PLEASE_TOKEN" ]; then
echo "RELEASE_PLEASE_TOKEN must be set to a fine-grained PAT so release-please tags can trigger release.yml." >&2
exit 1
fi
-
name
:
Run release-please
uses
:
googleapis/release-please-action@v4
with
:
# Use a fine-grained PAT so generated tags trigger release.yml.
token
:
${{ secrets.RELEASE_PLEASE_TOKEN }}
config-file
:
release-please-config.json
manifest-file
:
.release-please-manifest.json
.github/workflows/release.yml
View file @
f394e946
...
...
@@ -10,6 +10,9 @@ concurrency:
group
:
${{ github.workflow }}-${{ github.ref }}
cancel-in-progress
:
true
permissions
:
contents
:
read
env
:
GO_VERSION
:
"
1.26.1"
NODE_VERSION
:
"
24"
...
...
@@ -243,7 +246,6 @@ jobs:
with
:
tag_name
:
${{ needs.prepare.outputs.tag }}
name
:
${{ needs.prepare.outputs.tag }}
generate_release_notes
:
true
prerelease
:
${{ needs.prepare.outputs.is_prerelease == 'true' }}
files
:
artifacts/*
...
...
.release-please-manifest.json
0 → 100644
View file @
f394e946
{
"."
:
"0.26.2"
}
release-please-config.json
0 → 100644
View file @
f394e946
{
"$schema"
:
"https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
,
"include-v-in-tag"
:
true
,
"include-component-in-tag"
:
false
,
"bump-minor-pre-major"
:
true
,
"packages"
:
{
"."
:
{
"release-type"
:
"go"
,
"package-name"
:
"memos"
,
"changelog-path"
:
"CHANGELOG.md"
,
"changelog-sections"
:
[
{
"type"
:
"feat"
,
"section"
:
"Features"
},
{
"type"
:
"fix"
,
"section"
:
"Bug Fixes"
},
{
"type"
:
"perf"
,
"section"
:
"Performance Improvements"
},
{
"type"
:
"deps"
,
"section"
:
"Dependencies"
},
{
"type"
:
"revert"
,
"section"
:
"Reverts"
}
]
}
}
}
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