-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0713efa
commit 000ffaf
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Kuriimu2 Kaligraphy | ||
|
||
on: | ||
push: | ||
branches: | ||
- imgui | ||
paths: | ||
- 'src/lib/Kaligraphy/*.nuspec' | ||
- 'src/lib/Kaligraphy/*.csproj' | ||
- 'src/lib/Kaligraphy/*.cs' | ||
- 'src/lib/Kaligraphy.Contract/*.csproj' | ||
- 'src/lib/Kaligraphy.Contract/*.cs' | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: windows-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: nuget/setup-nuget@v2 | ||
|
||
- name: Wait for other dev builds | ||
uses: softprops/turnstyle@v2 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: 8.0 | ||
|
||
- name: Setup NuGet sources | ||
run: | | ||
dotnet nuget add source https://nuget.pkg.github.com/FanTranslatorsInternational/index.json --name Kuriimu2 --username onepiecefreak3 --password ${{ secrets.NUGET_UPDATE }} | ||
- name: Build Nuget | ||
run: dotnet build ./src/lib/Kaligraphy/Kaligraphy.csproj --configuration Release | ||
|
||
- name: Publish Nuget | ||
run: | | ||
foreach($file in (Get-ChildItem "nuget" -Recurse -Include *.nupkg)) { | ||
dotnet nuget push $file --api-key ${{ secrets.NUGET_UPDATE }} --source https://nuget.pkg.github.com/FanTranslatorsInternational/index.json --skip-duplicate | ||
} |