9 lines
295 B
Bash
9 lines
295 B
Bash
|
#!/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"
|