Merge pull request #5 from antokhio/feat/revamp #40
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: | |
branches: | |
- develop | |
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 .patch | |
- name: Publish VL Nuget | |
uses: vvvv/[email protected] | |
with: | |
csproj: src\VL.Yoga\Vl.Yoga.csproj | |
nuspec: deployment\VL.Yoga.nuspec | |
nuget-key: ${{ secrets.NUGET_KEY }} |