fix: avoid external checkout action
Some checks failed
Build and deploy demo app / deploy (push) Failing after 3s

This commit is contained in:
ningning 2026-06-26 12:06:07 +08:00
parent f3118595c4
commit 18fdd9176a

View File

@ -17,7 +17,10 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 run: |
set -eu
git clone "$GITHUB_SERVER_URL/$GITHUB_REPOSITORY.git" .
git checkout "$GITHUB_SHA"
- name: Show context - name: Show context
run: | run: |