Check dist / check-dist (push) Canceled after 2s
CodeQL / Analyze (javascript) (push) Canceled after 3s
Licensed / Check licenses (push) Canceled after 5s
Build and Test / test (macos-latest) (push) Canceled after 0s
Build and Test / test (windows-latest) (push) Canceled after 0s
Build and Test / test-git-container (push) Canceled after 0s
Build and Test / test-output (push) Canceled after 0s
Build and Test / build (push) Canceled after 5s
Build and Test / test (ubuntu-latest) (push) Canceled after 1s
Build and Test / test-proxy (push) Canceled after 1s
Build and Test / test-bypass-proxy (push) Canceled after 0s
10 lines
180 B
Bash
Executable File
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 ..
|