Compare commits

...

8 Commits

Author SHA1 Message Date
a23a438a7e Merge pull request 'ci/semantic-versioning' (!14) from ci/semantic-versioning into main
All checks were successful
Release / Release (push) Successful in 1m34s
Reviewed-on: #14
Reviewed-by: Constantin Simonis <constantin@simonis.lol>
Reviewed-by: Huy <ptran@noreply@simonis.lol>
2025-02-12 09:54:14 +00:00
94ac9bd491
style(release.yml): format permissions section in YAML 2025-02-12 10:52:49 +01:00
f4541c5d86
ci: update branch name in release workflow config 2025-02-12 10:51:57 +01:00
774e55c6a6
ci: change runner to remote in release workflow 2025-02-12 10:50:51 +01:00
25ff804b76
ci: add master branch trigger for release workflow 2025-02-12 10:49:53 +01:00
002ddd6dbe Merge branch 'main' into ci/semantic-versioning
Some checks failed
Release / Release (push) Has been cancelled
2025-02-12 09:48:50 +00:00
ab9598950a
build: add release configuration for semantic release
Some checks are pending
Release / Release (push) Waiting to run
2025-02-12 10:47:23 +01:00
f31a959ec5
build: add Gitea release workflow configuration 2025-02-12 10:45:42 +01:00
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,27 @@
name: Release
on:
push:
branches:
- "main"
env:
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}
permissions:
contents: read
jobs:
release:
name: Release
runs-on: remote
permissions:
contents: write
issues: write
pull-requests: write
id-token: write
steps:
- name: Create Release
uses: https://git.kjan.de/actions/semantic-release@main
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}

15
release.config.cjs Normal file
View File

@ -0,0 +1,15 @@
module.exports = {
branches: ['main'],
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
'@semantic-release/changelog',
["@saithodev/semantic-release-gitea", {
"giteaUrl": "https://git.simonis.lol"
}],
],
};