1
0
Fork 0
mirror of https://github.com/actions/checkout.git synced 2025-03-31 05:20:06 +02:00
This commit is contained in:
eric sciple 2020-01-24 15:01:51 -05:00
parent b2405e40be
commit 17982c5f7b
2 changed files with 10 additions and 0 deletions

View file

@ -87,7 +87,11 @@ jobs:
- name: Remove basic
run: rm -rf basic
- name: Override git version
if: runner.os != 'windows'
run: __test__/override-git-version.sh
- name: Override git version (Windows)
if: runner.os == 'windows'
run: __test__\\override-git-version.cmd
- name: Basic checkout using REST API
uses: ./
with:

View file

@ -0,0 +1,6 @@
mkdir override-git-version
cd override-git-version
echo @echo override git version 1.2.3 > git.cmd
echo ::add-path::%CD%
cd ..