Files
EdenReleases/.github/workflows/clone/action.yml
crueter 8bda0a1c96 update workflows
Signed-off-by: crueter <swurl@swurl.xyz>
2025-07-06 15:35:44 -04:00

27 lines
577 B
YAML

name: Clone
runs:
using: "composite"
steps:
- name: Parse Forgejo payload
uses: ./.github/workflows/parse
- name: Print env vars
shell: bash
run: |
echo "Tag: $FORGEJO_TAG"
- name: Checkout Repo
shell: bash
run: |
while ! git clone https://git.bixed.xyz/Bix/eden.git eden; do
echo "Clone failed!"
sleep 5
echo "Trying clone again..."
rm -rf ./eden || true
done
cd eden
git reset --hard $FORGEJO_TAG
git submodule update --init --recursive