Checkout repository manually
Some checks failed
Emacs Package CI / Compile Emacs Package (push) Failing after 7s
Emacs Package CI / Lint Emacs Package (push) Failing after 3s

- Updates workflow to clone the repository manually.
- Installs git as a prerequisite for cloning.
- Uses apt-get to install git.
- Clones the repository using git clone.
This commit is contained in:
Roger Gonzalez 2025-05-15 20:02:50 -03:00
parent 96907f02b0
commit 57e9a1ab2b
Signed by: rogs
GPG Key ID: C7ECE9C6C36EC2E6

View File

@ -15,8 +15,10 @@ jobs:
TERM: dumb
DEBIAN_FRONTEND: noninteractive
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Checkout manually
run: |
apt-get update && apt-get install -y git
git clone https://gitea.example.com/your/repo.git .
- name: Install Git
run: |