Update clone/action.yaml
This commit is contained in:
parent
3916e220b8
commit
803fe4b97e
@ -1,11 +1,25 @@
|
|||||||
name: Checkout
|
name: Checkout
|
||||||
desciption: Git clone reposirory
|
desciption: Git clone reposirory
|
||||||
|
|
||||||
|
inputs:
|
||||||
|
url:
|
||||||
|
type: string
|
||||||
|
required: false
|
||||||
|
description: Repository URL that will be cloned
|
||||||
|
default: ${{github.server_url}}/${{github.repository}}.git
|
||||||
|
|
||||||
|
secrets:
|
||||||
|
token:
|
||||||
|
type: string
|
||||||
|
required: false
|
||||||
|
description: Authentication token
|
||||||
|
default: ${{github.token}}
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: composite
|
using: composite
|
||||||
steps:
|
steps:
|
||||||
- name: Creat authorized Git URL
|
- name: Creat authorized Git URL
|
||||||
run: echo "URL=$(echo ${{github.server_url}} | sed s%://%://${{github.token}}@% )/${{github.repository}}.git" >> $GITHUB_ENV
|
run: echo "URL=$(echo ${{inputs.url}} | sed s%://%://${{secrets.token}}@% )" >> $GITHUB_ENV
|
||||||
shell: sh
|
shell: sh
|
||||||
- name: Clone repository
|
- name: Clone repository
|
||||||
uses: docker://alpine/git
|
uses: docker://alpine/git
|
||||||
|
Loading…
Reference in New Issue
Block a user