This repository has been archived by the owner on Nov 18, 2024. It is now read-only.
Merge pull request #3 from JuniorDark/dependabot/nuget/System.Data.Sq… #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '7.0.x' | |
- name: Build RHGMTool | |
run: dotnet publish --configuration Release --self-contained false --runtime win-x86 /p:PublishSingleFile=false --output ./publish/RHGMTool | |
- name: Zip output files | |
run: Compress-Archive -Path "./publish/RHGMTool" -DestinationPath RH_GM_Tool.zip | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Rusty Hearts GM Tool | |
path: RH_GM_Tool.zip |