Files
checkout/__test__/override-git-version.sh
T
fourbroad 039ede8ebe
Build and Test / build (push) Failing after 14s
Check dist / check-dist (push) Successful in 48s
CodeQL / Analyze (javascript) (push) Failing after 1s
Licensed / Check licenses (push) Successful in 13s
Build and Test / test (ubuntu-latest) (push) Failing after 34s
Build and Test / test-bypass-proxy (push) Failing after 1s
Build and Test / test-git-container (push) Failing after 46s
Build and Test / test-output (push) Failing after 1s
Build and Test / test-proxy (push) Failing after 13m3s
Build and Test / test (macos-latest) (push) Has been cancelled
Build and Test / test (windows-latest) (push) Has been cancelled
Import actions/checkout @v4
2026-06-17 07:48:49 +08:00

10 lines
180 B
Bash
Executable File

#!/bin/sh
mkdir override-git-version
cd override-git-version
echo "#!/bin/sh" > git
echo "echo override git version 1.2.3" >> git
chmod +x git
echo "$(pwd)" >> $GITHUB_PATH
cd ..