Skip to content

Commit adc9b78

Browse files
committed
Fix csproj encoding and update workflows
1 parent 96075b7 commit adc9b78

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/ci-debug.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,12 @@ jobs:
2323
- name: Publish
2424
run: dotnet publish -p:PublishSingleFile=true -p:CommitHash=${{ github.sha }} -p:CommitRef=${{ github.ref_type }}/${{ github.ref_name }} -r win-x64 -c Debug --self-contained false .\Bloxstrap\Bloxstrap.csproj
2525

26+
- name: Rename output
27+
run: ren .\Bloxstrap\bin\Debug\net6.0-windows\win-x64\publish\Fishstrap.exe BoneFish.exe
28+
2629
- name: Upload Artifact
2730
uses: actions/upload-artifact@v4
2831
with:
2932
name: BoneFish-Debug
3033
path: .\Bloxstrap\bin\Debug\net6.0-windows\win-x64\publish\BoneFish.exe
31-
archive: false
34+
if-no-files-found: error

.github/workflows/ci-release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,15 @@ jobs:
2626
- name: Publish
2727
run: dotnet publish -p:PublishSingleFile=true -p:EnableCompressionInSingleFile=true -p:DebugType=None -p:DebugSymbols=false -p:CommitHash=${{ github.sha }} -p:CommitRef=${{ github.ref_type }}/${{ github.ref_name }} -r win-x64 -c Release --self-contained false .\Bloxstrap\Bloxstrap.csproj
2828

29+
- name: Rename output
30+
run: ren .\Bloxstrap\bin\Release\net6.0-windows\win-x64\publish\Fishstrap.exe BoneFish.exe
31+
2932
- name: Upload Artifact
3033
uses: actions/upload-artifact@v4
3134
with:
3235
name: BoneFish-Release
3336
path: .\Bloxstrap\bin\Release\net6.0-windows\win-x64\publish\BoneFish.exe
37+
if-no-files-found: error
3438

3539
release:
3640
needs: build

0 commit comments

Comments
 (0)