7 lines
383 B
Bash
7 lines
383 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# Always return exit code 0 so that we can use the codespaces prebuild to diagnose build errors.
|
||
|
./build.sh /p:ArcadeBuildTarball=true /p:TarballDir=$(realpath ..)/dotnet-source/ /p:PreserveTarballGitFolders=true || true
|
||
|
|
||
|
# Save the commit hash of the currently built repo, so developers know which version was built
|
||
|
git rev-parse HEAD > ./artifacts/prebuild.sha
|