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 80a84d7 commit 953c1f3Copy full SHA for 953c1f3
.github/workflows/ci.yml
@@ -177,8 +177,9 @@ jobs:
177
vs-version: '16.6.2'
178
- name: Get Tags
179
run: |
180
- git fetch origin --tags &&
181
- git checkout tags/a-test-tag
+ git fetch --tags &&
+ latestTag=$(git describe --tags "$(git rev-list --tags --max-count=1)") &&
182
+ git checkout $latestTag
183
- name: Build
184
run: msbuild "Source\dolphin-emu.sln" /verbosity:minimal /property:Configuration=Release /property:Platform=x64
185
- name: Upload Build Artifact
0 commit comments