Skip to content

Commit

Permalink
Update and rename msbuild.yml to PublishBinary.yml (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
SubstituteR authored Nov 28, 2023
1 parent 10be878 commit bce141c
Showing 1 changed file with 11 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
name: MSBuild
name: PublishBinary
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

env:
SOLUTION_FILE_PATH: .
Expand Down Expand Up @@ -44,10 +42,15 @@ jobs:

- uses: actions/upload-artifact@v3
with:
name: AsaApiLoader.exe
path: ${{env.SOLUTION_FILE_PATH}}/x64/Release/AsaApiLoader.exe
name: AsaApiLoader
path: ${{env.SOLUTION_FILE_PATH}}/x64/Release/

- uses: actions/upload-artifact@v3
- name: Lastest Auto-Build
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
name: AsaApiLoader.pdb
path: ${{env.SOLUTION_FILE_PATH}}/x64/Release/AsaApiLoader.pdb
files: |
${{env.SOLUTION_FILE_PATH}}/x64/Release/AsaApiLoader.exe
${{env.SOLUTION_FILE_PATH}}/x64/Release/AsaApiLoader.pdb
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit bce141c

Please sign in to comment.