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 7b970b4 commit b331e09Copy full SHA for b331e09
.github/workflows/ci.yml
@@ -169,15 +169,16 @@ jobs:
169
runs-on: windows-latest
170
steps:
171
- uses: actions/checkout@v2
172
+ - name: Get Tags
173
+ run: |
174
+ git fetch --tags
175
+ git describe --tags $(git rev-list --tags --max-count=1)
176
- name: Setup Submodules
177
run: git config --global --add safe.directory . && git submodule update --init --recursive
178
- name: Setup MSBuild
179
uses: microsoft/[email protected]
180
with:
181
vs-version: '16.6.2'
- - name: Get Tags
- run: |
- git fetch --tags
182
- name: Build
183
run: msbuild "Source\dolphin-emu.sln" /verbosity:minimal /property:Configuration=Release /property:Platform=x64
184
- name: Upload Build Artifact
0 commit comments