12 lines
317 B
YAML
12 lines
317 B
YAML
name: Git Checkout
|
|
desciption: Checkout repository using alpite/git
|
|
|
|
runs:
|
|
using: composite
|
|
container: alpine/git
|
|
steps:
|
|
- run: |
|
|
HOST=$(echo "$GITHUB_SERVER_URL" | sed 's%https://%%')
|
|
URL="https://$GITHUB_TOKEN@$HOST/$GITHUB_REPOSITORY.git"
|
|
git clone -b "$GITHUB_REF_NAME" "$URL" .
|