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 a32e019 commit f39eb27Copy full SHA for f39eb27
.github/workflows/cs2_msbuild.yml
@@ -3,8 +3,6 @@ name: CS2 Cheat MSBuild
3
on:
4
push:
5
branches: [ "main" ]
6
- tags:
7
- - "v*.*.*"
8
pull_request:
9
10
@@ -42,11 +40,12 @@ jobs:
42
40
43
41
- name: Release CS2 Cheat
44
uses: softprops/action-gh-release@v1
+ if: startsWith(github.ref, 'refs/tags/')
45
with:
46
body_path: CHANGELOG.txt
47
files: |
48
- /x64/Release/CS2CheatCpp.exe
49
- /x64/Release/CS2CheatCpp.pdb
50
- /x64/Release/imgui.ini
+ ${{ github.workspace }}/x64/Release/CS2CheatCpp.exe
+ ${{ github.workspace }}/x64/Release/CS2CheatCpp.pdb
+ ${{ github.workspace }}/x64/Release/imgui.ini
51
draft: false
52
prerelease: false
0 commit comments