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 e7f91cc commit fd17d63Copy full SHA for fd17d63
.github/workflows/windows-playable-build.yml
@@ -32,6 +32,11 @@ jobs:
32
git submodule sync --recursive
33
git submodule update --init --force --recursive --depth=1
34
35
+ - name: Checkout master on tag push
36
+ if: github.ref_type == 'tag'
37
+ # Checkout only if the tag was pushed to master
38
+ run: (git rev-parse HEAD) -eq (git rev-parse origin/master) -and (git checkout master)
39
+
40
- name: Cache xmake dependencies
41
uses: actions/cache@v4
42
with:
0 commit comments