New translations Lang.resx (Chinese Simplified) #96
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 Localization | |
on: | |
push: | |
branches: [ "l10n/main" ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 7.0.x | |
- name: Build | |
run: | | |
dotnet publish Starward.Core -c Release -o build | |
dotnet publish Starward.Language -c Release -o build | |
- name: Upload Artifact | |
uses: actions/[email protected] | |
with: | |
name: build | |
path: build | |