Skip to content

Commit

Permalink
Update dotnet.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
iMrShadow authored Jul 10, 2024
1 parent 47c7993 commit 0178bb7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ name: .NET

on:
push:
branches: [ "main" ]
branches: [ "main", "beta" ]
pull_request:
branches: [ "main" ]
branches: [ "main", "beta" ]

env:
GUI_PROJECT_PATH : 'DDS_D3DTX_Converter_GUI/DDS_D3DTX_Converter/DDS_D3DTX_Converter.csproj'
GUI_PROJECT_PATH : 'TelltaleTextureTool/TelltaleTextureTool/TelltaleTextureTool.csproj'
OUTPUT_PROJECT_PATH : 'Builds'

jobs:
Expand All @@ -33,9 +33,9 @@ jobs:
- name: Publish
run: dotnet publish ${{env.GUI_PROJECT_PATH}} --configuration Release --no-build
- name: Zip
run: zip -r DDS_D3DTX_Converter.zip ./DDS_D3DTX_Converter_GUI/DDS_D3DTX_Converter/bin/Release/net8.0/publish/
run: zip -r TelltaleTextureTool.zip ./TelltaleTextureTool/TelltaleTextureTool/bin/Release/net8.0/publish/
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: DDS_D3DTX_Converter
path: ./DDS_D3DTX_Converter_GUI/DDS_D3DTX_Converter/bin/Release/net8.0/publish/
name: TelltaleTextureTool
path: ./TelltaleTextureTool/TelltaleTextureTool/bin/Release/net8.0/publish/

0 comments on commit 0178bb7

Please sign in to comment.