We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4da487 commit cab3140Copy full SHA for cab3140
2 files changed
.github/workflows/ci.yml
@@ -28,7 +28,7 @@ jobs:
28
VERSION=$(jq -r .version package.json)
29
echo "return {" > src/shared/version.lua
30
echo " version = '${VERSION}'," >> src/sharedversion.lua
31
- echo " commit = '$(git rev-parse HEAD)'," >> src/shared/version.lua
+ echo " commit = '$(git rev-parse --short=8 HEAD)'," >> src/shared/version.lua
32
echo " branch = '${GITHUB_REF##*/}'," >> src/shared/version.lua
33
echo "}" >> src/shared/version.lua
34
…nt/StarterPlayerScripts/test.client.luau …ent/StarterPlayerScripts/test.client.luasrc/client/StarterPlayerScripts/test.client.luau renamed to src/client/StarterPlayerScripts/test.client.lua
@@ -1,7 +1,7 @@
1
print("Test");
2
print("test2");
3
4
-local version = game.ReplicatedStorage:WaitForChild("Version");
+local version = game.ReplicatedStorage:WaitForChild("Version", 20);
5
print(version.version)
6
print(version.commit)
7
print(version.branch)
0 commit comments