nuspec correction #22
Workflow file for this run
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: push_release_nuget | |
# on push on master | |
on: | |
push: | |
branches: | |
- feat/nuget | |
paths-ignore: | |
- README.md | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@master | |
with: | |
submodules: 'recursive' | |
- name: Setup MSBuild.exe | |
uses: microsoft/setup-msbuild@v1 | |
- name: Setup Nuget.exe | |
uses: nuget/setup-nuget@v1 | |
- name: Apply patch | |
run: git apply --ignore-whitespace shared-build.patch | |
- name: Build yogacore | |
uses: threeal/[email protected] | |
with: | |
source-dir: yoga\yoga | |
build-dir: out | |
# - name: Copy yogacore.dll | |
# run: xcopy "out\Debug\*.dll" "lib\net8.0\" /h /i /c /k /e /r /y | |
- name: Publish VL Nuget | |
uses: vvvv/[email protected] | |
with: | |
csproj: src\Vl.Yoga.csproj | |
nuspec: deployment\VL.Yoga.nuspec | |
nuget-key: ${{ secrets.NUGET_KEY }} |