Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
acnicholls committed Oct 16, 2024
1 parent 73a4a49 commit 4a77156
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-release-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: build-executable-log
path: .\msbuild.log
path: ${{ github.workspace }}\Solution\msbuild.log
retention-days: 5

# check for build success before continuing
Expand All @@ -74,7 +74,7 @@ jobs:
- name: zip build artifact
id: zip-build-artifact
run: |
7z a -tzip ${{ github.workspace }}\Build_Release.zip ${{ github.workspace }}\_build
7z a -tzip ${{ github.workspace }}\Build_Release.zip ${{ github.workspace }}\Solution\TrangTestStub\bin\Release\*
# send build output to github output
- name: Upload Build Artifact
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-release-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: build-executable-log
path: .\msbuild.log
path: ${{ github.workspace }}\Solution\msbuild.log
retention-days: 5

# check for success before continuing
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
- name: zip build artifact
id: zip-build-artifact
run: |
7z a -tzip ${{ github.workspace }}\Build_Release.zip ${{ github.workspace }}\_build
7z a -tzip ${{ github.workspace }}\Build_Release.zip ${{ github.workspace }}\Solution\TrangTestStub\bin\Release\*
# send build artifact to github output
- name: Upload Build Artifact
Expand Down

0 comments on commit 4a77156

Please sign in to comment.