3 Commits

Author SHA1 Message Date
lucasdpt
a346f8db9a ci: update 2026-04-10 20:21:20 +02:00
lucasdpt
ce3539c2ec ci: update 2026-04-10 20:13:08 +02:00
58b6d322a5 ci: update checkout version 2026-03-30 14:09:45 +00:00

View File

@@ -2,11 +2,10 @@ name: Semantic Release
on: on:
workflow_call: workflow_call:
secrets:
permissions: GH_TOKEN:
contents: write description: 'PAT with repo access, required to trigger workflows on tag push'
issues: write required: false
pull-requests: write
jobs: jobs:
release: release:
@@ -15,14 +14,29 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v6 uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd #v6.0.2
with: with:
fetch-depth: 0 fetch-depth: 0
token: ${{ secrets.GH_TOKEN || github.token }}
- name: Setup semantic-release - name: Setup semantic-release
uses: https://gitea.ldpt.fr/actions/semantic-release/setup-semrel@main uses: https://gitea.ldpt.fr/actions/semantic-release/setup-semrel@main
with: with:
node-version: "24" node-version: "24"
- name: Configure git remote with PAT
if: ${{ secrets.GH_TOKEN != '' }}
shell: bash
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: |
set -euo pipefail
REMOTE_URL=$(git remote get-url origin)
# Inject PAT so tag pushes come from the PAT user, not the Actions runner token
NEW_URL=$(echo "$REMOTE_URL" | sed "s|https://|https://oauth2:${GH_TOKEN}@|")
git remote set-url origin "$NEW_URL"
- name: Run semantic-release - name: Run semantic-release
env:
GITEA_TOKEN: ${{ secrets.GH_TOKEN || github.token }}
run: semantic-release run: semantic-release