3 Commits

Author SHA1 Message Date
c4817357cf add renovate
Some checks failed
CI / lint (push) Failing after 47s
CI / lint (pull_request) Failing after 54s
2025-10-13 20:36:30 +02:00
daf752884e add simple cicd 2025-10-13 20:35:36 +02:00
ff302530f8 feat: add release-git-tag 2025-10-13 20:35:18 +02:00
2 changed files with 19 additions and 4 deletions

View File

@@ -10,15 +10,16 @@ jobs:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
- uses: actions/checkout@v5
with:
fetch-depth: 0
- run: npm ci
- name: Increment tag
id: tag
uses: https://gitea.t000-n.de/t.behrendt/conventional-semantic-git-tag-increment@0.1.2
with:
token: ${{ secrets.GITEA_TOKEN }}
- name: Push tag
uses: ./release-git-tag
with:
tag: ${{ steps.tag.outputs.new-tag }}
run: |
git tag ${{ steps.tag.outputs.new-tag }}
git push origin ${{ steps.tag.outputs.new-tag }}

14
.gitea/workflows/ci.yaml Normal file
View File

@@ -0,0 +1,14 @@
name: CI
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version: 1.25.1
- run: go install github.com/rhysd/actionlint/cmd/actionlint@latest
- run: actionlint