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 5e0f67b commit cc886f5Copy full SHA for cc886f5
.github/workflows/ci.yml
@@ -111,6 +111,13 @@ jobs:
111
"${COMMON_ARGS[@]}" \
112
-B build-arm .
113
114
+ - name: Dolphin-Build Number
115
+ run: |
116
+ export LASTCOMMIT=$(git log --pretty=format:%H -1)
117
+ export DOLPHINVER=$(wget -qO- https://dolphin-emu.org/download/dev/${LASTCOMMIT} | grep '<title>' | awk '{print $NF}' | cut -d '<' -f 1)
118
+ echo "DOLPHIN Build $DOLPHINVER"
119
+ echo "DOLPHINVER=$DOLPHINVER" >> $GITHUB_ENV
120
+ sed -i "s|\${DOLPHIN_WC_DESCRIBE}|$DOLPHINVER|g" Source/Core/Common/scmrev.h.in
121
- name: Build Dolphin (x86_64)
122
working-directory: build
123
run: |
0 commit comments