Update README.md #7
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: CI | |
on: [pull_request, push] | |
jobs: | |
build: | |
name: Build | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Build 3DSRNGTool | |
run: dotnet build --configuration Release --verbosity minimal | |
- name: Package 3DSRNGTool | |
run: | | |
mkdir upload\3DSRNGTool | |
mv 3DSRNGTool\bin\Release\net8.0-windows\win-x64\* upload\3DSRNGTool | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: 3DSRNGTool | |
path: upload |