Files
go-example/.gitea/actions/checkout/__test__/override-git-version.sh
Zpekii ae1cfb214a
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 3s
ci: update uses
2026-01-24 19:08:30 +08:00

10 lines
180 B
Bash

#!/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 ..