ci: remove external action dependencies
All checks were successful
Package component / package (push) Successful in 3m54s

This commit is contained in:
2026-07-20 06:18:11 +00:00
parent 3cdac51381
commit 3b6f85536f

View File

@@ -14,10 +14,11 @@ jobs:
shell: bash shell: bash
run: | run: |
set -euo pipefail set -euo pipefail
repository_url="${GITEA_SERVER_URL%/}/${GITEA_REPOSITORY}.git" server_url="${{ gitea.server_url }}"
repository_url="${server_url%/}/${{ gitea.repository }}.git"
git init . git init .
git remote add origin "$repository_url" git remote add origin "$repository_url"
git fetch --depth 1 origin "$GITEA_SHA" git fetch --depth 1 origin "${{ gitea.sha }}"
git checkout --detach FETCH_HEAD git checkout --detach FETCH_HEAD
- name: Set up pnpm - name: Set up pnpm