1
0
Fork 0
mirror of https://github.com/actions/checkout.git synced 2025-04-26 04:00:03 +00:00

fallback to REST API to download repo (#104)

This commit is contained in:
eric sciple 2019-12-12 13:16:16 -05:00 committed by GitHub
parent cab31617d8
commit a572f640b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 4079 additions and 802 deletions

View file

@ -1,10 +1,24 @@
#!/bin/bash
#!/bin/sh
if [ ! -f "./basic/basic-file.txt" ]; then
echo "Expected basic file does not exist"
exit 1
fi
# Verify auth token
cd basic
git fetch
if [ "$1" = "--archive" ]; then
# Verify no .git folder
if [ -d "./basic/.git" ]; then
echo "Did not expect ./basic/.git folder to exist"
exit 1
fi
else
# Verify .git folder
if [ ! -d "./basic/.git" ]; then
echo "Expected ./basic/.git folder to exist"
exit 1
fi
# Verify auth token
cd basic
git fetch --no-tags --depth=1 origin +refs/heads/master:refs/remotes/origin/master
fi