Skip to content

Commit

Permalink
Seperate Github Actions binary downloads
Browse files Browse the repository at this point in the history
  • Loading branch information
Gumball2415 committed Oct 19, 2023
1 parent dfb2d2f commit e9d6fc7
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/build-artifact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,17 @@ jobs:
call msbuild -m:5 -nologo -p:Configuration="${{ matrix.configuration }}" -p:Platform="${{ matrix.platform }}"
if %ERRORLEVEL%==1 exit %ERRORLEVEL%
call release.bat ${{ matrix.configuration }} ${{ matrix.platform }} %commithash%_%GITHUB_RUN_ID%
- name: Prepare binary name variables
shell: cmd
run: |
if ${{ matrix.platform }}=="Win32" (
set conf_name=x86
)
if ${{ matrix.platform }}=="x64" (
set conf_name=x64
)
- name: Upload binaries
uses: actions/upload-artifact@master
with:
name: build-artifacts
path: distribute/*.7z
name: Dn-FamiTracker_${{ env.commithash }}_${{ env.GITHUB_RUN_ID }}_${{ env.conf_name }}_${{ matrix.configuration }}
path: distribute/*_${{ env.conf_name }}_${{ matrix.configuration }}.7z

0 comments on commit e9d6fc7

Please sign in to comment.