We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 817fd19 commit b224335Copy full SHA for b224335
.github/workflows/macos_build.yml
@@ -147,7 +147,7 @@ jobs:
147
SUFFIX="pr[$PR_NUM]-sha[$PR_SHA]-title[$PR_TITLE"
148
SUFFIX=$(printf "%.99s]" "$SUFFIX")
149
else
150
- SUFFIX="$TAG"
+ SUFFIX="sha[$(git rev-parse --short HEAD)]"
151
fi
152
APPNAME="ProjectPlus-$SUFFIX"
153
mv build/Binaries/DolphinQt.app "$APPNAME.app"
Source/Core/Common/Version.cpp
@@ -21,7 +21,7 @@ namespace Common
21
22
const std::string& GetScmRevStr()
23
{
24
- static const std::string scm_rev_str = EMULATOR_NAME " "
+ static const std::string scm_rev_str = "Project+ Dolphin v3.1.2-mainline-beta.2"
25
26
#ifdef __INTEL_COMPILER
27
BUILD_TYPE_STR SCM_DESC_STR "-ICC";
0 commit comments