fix: use git clone instead of fetch/checkout for act runner compatibility
The Gitea runner uses act which does not auto-checkout when using shell commands instead of JS actions. The previous git fetch/checkout failed silently because there was no .git directory. - Replace all checkout steps with git clone into current directory - Add safe.directory config to avoid git ownership errors - Use GITEA_TOKEN for authenticated clone if available
This commit is contained in:
@ -17,9 +17,22 @@ jobs:
|
|||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
|
env:
|
||||||
|
GITEA_TOKEN: ${{ secrets.giteatoken }}
|
||||||
run: |
|
run: |
|
||||||
git fetch --unshallow 2>/dev/null || true
|
set -e
|
||||||
git checkout "$GITHUB_SHA" || true
|
REPO_URL="https://gitea-lxc.moon-dragon.us/echo/linux_patch_api.git"
|
||||||
|
if [ ! -f "Cargo.toml" ]; then
|
||||||
|
rm -rf .git 2>/dev/null || true
|
||||||
|
if [ -n "$GITEA_TOKEN" ]; then
|
||||||
|
git clone --depth 1 "https://token:${GITEA_TOKEN}@gitea-lxc.moon-dragon.us/echo/linux_patch_api.git" .
|
||||||
|
else
|
||||||
|
git clone --depth 1 "$REPO_URL" .
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
git config --global --add safe.directory "$(pwd)" 2>/dev/null || true
|
||||||
|
git fetch origin "$GITHUB_SHA" --depth=1
|
||||||
|
git checkout -f "$GITHUB_SHA"
|
||||||
- name: Install Rust
|
- name: Install Rust
|
||||||
run: |
|
run: |
|
||||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --profile minimal
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --profile minimal
|
||||||
@ -34,9 +47,22 @@ jobs:
|
|||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
|
env:
|
||||||
|
GITEA_TOKEN: ${{ secrets.giteatoken }}
|
||||||
run: |
|
run: |
|
||||||
git fetch --unshallow 2>/dev/null || true
|
set -e
|
||||||
git checkout "$GITHUB_SHA" || true
|
REPO_URL="https://gitea-lxc.moon-dragon.us/echo/linux_patch_api.git"
|
||||||
|
if [ ! -f "Cargo.toml" ]; then
|
||||||
|
rm -rf .git 2>/dev/null || true
|
||||||
|
if [ -n "$GITEA_TOKEN" ]; then
|
||||||
|
git clone --depth 1 "https://token:${GITEA_TOKEN}@gitea-lxc.moon-dragon.us/echo/linux_patch_api.git" .
|
||||||
|
else
|
||||||
|
git clone --depth 1 "$REPO_URL" .
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
git config --global --add safe.directory "$(pwd)" 2>/dev/null || true
|
||||||
|
git fetch origin "$GITHUB_SHA" --depth=1
|
||||||
|
git checkout -f "$GITHUB_SHA"
|
||||||
- name: Install Rust
|
- name: Install Rust
|
||||||
run: |
|
run: |
|
||||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --profile minimal
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --profile minimal
|
||||||
@ -55,9 +81,22 @@ jobs:
|
|||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
|
env:
|
||||||
|
GITEA_TOKEN: ${{ secrets.giteatoken }}
|
||||||
run: |
|
run: |
|
||||||
git fetch --unshallow 2>/dev/null || true
|
set -e
|
||||||
git checkout "$GITHUB_SHA" || true
|
REPO_URL="https://gitea-lxc.moon-dragon.us/echo/linux_patch_api.git"
|
||||||
|
if [ ! -f "Cargo.toml" ]; then
|
||||||
|
rm -rf .git 2>/dev/null || true
|
||||||
|
if [ -n "$GITEA_TOKEN" ]; then
|
||||||
|
git clone --depth 1 "https://token:${GITEA_TOKEN}@gitea-lxc.moon-dragon.us/echo/linux_patch_api.git" .
|
||||||
|
else
|
||||||
|
git clone --depth 1 "$REPO_URL" .
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
git config --global --add safe.directory "$(pwd)" 2>/dev/null || true
|
||||||
|
git fetch origin "$GITHUB_SHA" --depth=1
|
||||||
|
git checkout -f "$GITHUB_SHA"
|
||||||
- name: Install Rust
|
- name: Install Rust
|
||||||
run: |
|
run: |
|
||||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --profile minimal
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --profile minimal
|
||||||
@ -75,9 +114,22 @@ jobs:
|
|||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
|
env:
|
||||||
|
GITEA_TOKEN: ${{ secrets.giteatoken }}
|
||||||
run: |
|
run: |
|
||||||
git fetch --unshallow 2>/dev/null || true
|
set -e
|
||||||
git checkout "$GITHUB_SHA" || true
|
REPO_URL="https://gitea-lxc.moon-dragon.us/echo/linux_patch_api.git"
|
||||||
|
if [ ! -f "Cargo.toml" ]; then
|
||||||
|
rm -rf .git 2>/dev/null || true
|
||||||
|
if [ -n "$GITEA_TOKEN" ]; then
|
||||||
|
git clone --depth 1 "https://token:${GITEA_TOKEN}@gitea-lxc.moon-dragon.us/echo/linux_patch_api.git" .
|
||||||
|
else
|
||||||
|
git clone --depth 1 "$REPO_URL" .
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
git config --global --add safe.directory "$(pwd)" 2>/dev/null || true
|
||||||
|
git fetch origin "$GITHUB_SHA" --depth=1
|
||||||
|
git checkout -f "$GITHUB_SHA"
|
||||||
- name: Install Rust
|
- name: Install Rust
|
||||||
run: |
|
run: |
|
||||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --profile minimal
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --profile minimal
|
||||||
@ -98,9 +150,22 @@ jobs:
|
|||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
|
env:
|
||||||
|
GITEA_TOKEN: ${{ secrets.giteatoken }}
|
||||||
run: |
|
run: |
|
||||||
git fetch --unshallow 2>/dev/null || true
|
set -e
|
||||||
git checkout "$GITHUB_SHA" || true
|
REPO_URL="https://gitea-lxc.moon-dragon.us/echo/linux_patch_api.git"
|
||||||
|
if [ ! -f "Cargo.toml" ]; then
|
||||||
|
rm -rf .git 2>/dev/null || true
|
||||||
|
if [ -n "$GITEA_TOKEN" ]; then
|
||||||
|
git clone --depth 1 "https://token:${GITEA_TOKEN}@gitea-lxc.moon-dragon.us/echo/linux_patch_api.git" .
|
||||||
|
else
|
||||||
|
git clone --depth 1 "$REPO_URL" .
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
git config --global --add safe.directory "$(pwd)" 2>/dev/null || true
|
||||||
|
git fetch origin "$GITHUB_SHA" --depth=1
|
||||||
|
git checkout -f "$GITHUB_SHA"
|
||||||
- name: Install Rust
|
- name: Install Rust
|
||||||
run: |
|
run: |
|
||||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --profile minimal
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --profile minimal
|
||||||
@ -128,9 +193,22 @@ jobs:
|
|||||||
runs-on: fedora
|
runs-on: fedora
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
|
env:
|
||||||
|
GITEA_TOKEN: ${{ secrets.giteatoken }}
|
||||||
run: |
|
run: |
|
||||||
git fetch --unshallow 2>/dev/null || true
|
set -e
|
||||||
git checkout "$GITHUB_SHA" || true
|
REPO_URL="https://gitea-lxc.moon-dragon.us/echo/linux_patch_api.git"
|
||||||
|
if [ ! -f "Cargo.toml" ]; then
|
||||||
|
rm -rf .git 2>/dev/null || true
|
||||||
|
if [ -n "$GITEA_TOKEN" ]; then
|
||||||
|
git clone --depth 1 "https://token:${GITEA_TOKEN}@gitea-lxc.moon-dragon.us/echo/linux_patch_api.git" .
|
||||||
|
else
|
||||||
|
git clone --depth 1 "$REPO_URL" .
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
git config --global --add safe.directory "$(pwd)" 2>/dev/null || true
|
||||||
|
git fetch origin "$GITHUB_SHA" --depth=1
|
||||||
|
git checkout -f "$GITHUB_SHA"
|
||||||
- name: Install Rust
|
- name: Install Rust
|
||||||
run: |
|
run: |
|
||||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --profile minimal
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --profile minimal
|
||||||
@ -160,9 +238,22 @@ jobs:
|
|||||||
runs-on: alpine
|
runs-on: alpine
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
|
env:
|
||||||
|
GITEA_TOKEN: ${{ secrets.giteatoken }}
|
||||||
run: |
|
run: |
|
||||||
git fetch --unshallow 2>/dev/null || true
|
set -e
|
||||||
git checkout "$GITHUB_SHA" || true
|
REPO_URL="https://gitea-lxc.moon-dragon.us/echo/linux_patch_api.git"
|
||||||
|
if [ ! -f "Cargo.toml" ]; then
|
||||||
|
rm -rf .git 2>/dev/null || true
|
||||||
|
if [ -n "$GITEA_TOKEN" ]; then
|
||||||
|
git clone --depth 1 "https://token:${GITEA_TOKEN}@gitea-lxc.moon-dragon.us/echo/linux_patch_api.git" .
|
||||||
|
else
|
||||||
|
git clone --depth 1 "$REPO_URL" .
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
git config --global --add safe.directory "$(pwd)" 2>/dev/null || true
|
||||||
|
git fetch origin "$GITHUB_SHA" --depth=1
|
||||||
|
git checkout -f "$GITHUB_SHA"
|
||||||
- name: Install Rust
|
- name: Install Rust
|
||||||
run: |
|
run: |
|
||||||
apk add --no-cache curl bash
|
apk add --no-cache curl bash
|
||||||
@ -195,9 +286,22 @@ jobs:
|
|||||||
runs-on: arch
|
runs-on: arch
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
|
env:
|
||||||
|
GITEA_TOKEN: ${{ secrets.giteatoken }}
|
||||||
run: |
|
run: |
|
||||||
git fetch --unshallow 2>/dev/null || true
|
set -e
|
||||||
git checkout "$GITHUB_SHA" || true
|
REPO_URL="https://gitea-lxc.moon-dragon.us/echo/linux_patch_api.git"
|
||||||
|
if [ ! -f "Cargo.toml" ]; then
|
||||||
|
rm -rf .git 2>/dev/null || true
|
||||||
|
if [ -n "$GITEA_TOKEN" ]; then
|
||||||
|
git clone --depth 1 "https://token:${GITEA_TOKEN}@gitea-lxc.moon-dragon.us/echo/linux_patch_api.git" .
|
||||||
|
else
|
||||||
|
git clone --depth 1 "$REPO_URL" .
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
git config --global --add safe.directory "$(pwd)" 2>/dev/null || true
|
||||||
|
git fetch origin "$GITHUB_SHA" --depth=1
|
||||||
|
git checkout -f "$GITHUB_SHA"
|
||||||
- name: Install Rust
|
- name: Install Rust
|
||||||
run: |
|
run: |
|
||||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --profile minimal
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --profile minimal
|
||||||
|
|||||||
Reference in New Issue
Block a user