checkout/checkout.sh
2024-04-29 11:43:08 +02:00

9 lines
295 B
Bash
Executable File

#!/bin/bash -e
URL="${ACTION_SERVER_URL/\/\//\/\/$ACTION_REPOSITORY_OWNER:$ACTION_TOKEN@}/$ACTION_REPOSITORY"
git init -b main
git remote add origin "$URL"
git fetch --no-tags --prune --no-recurse-submodules --depth=1 origin "$ACTION_SHA"
git checkout --progress --force -B main "$ACTION_SHA"