测试action-gh-release的if逻辑 #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CS2 Cheat MSBuild | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
SOLUTION_FILE_PATH: CS2CheatCpp.sln | |
BUILD_CONFIGURATION: Release | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Add MSBuild to PATH | |
uses: microsoft/setup-msbuild@v1.0.2 | |
- name: Build | |
working-directory: ${{env.GITHUB_WORKSPACE}} | |
run: | | |
msbuild -version | |
msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} /p:Platform="x64" -t:rebuild -verbosity:diag ${{env.SOLUTION_FILE_PATH}} | |
- name: Show MSBuild Cpp Ouput | |
working-directory: ${{env.GITHUB_WORKSPACE}} | |
run: | | |
cd x64 | |
dir | |
cd Release | |
dir | |
shell: cmd | |
- name: Release CS2 Cheat | |
uses: softprops/action-gh-release@v1 | |
if: true | |
# startsWith(github.ref, 'refs/tags/') | |
with: | |
body_path: CHANGELOG.txt | |
files: | | |
${{ github.workspace }}/x64/Release/CS2CheatCpp.exe | |
${{ github.workspace }}/x64/Release/CS2CheatCpp.pdb | |
${{ github.workspace }}/x64/Release/imgui.ini | |
draft: false | |
prerelease: false |