-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/deploy'
- Loading branch information
Showing
2 changed files
with
65 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,39 @@ | ||
# For more information see: | ||
# https://thegraybook.vvvv.org/reference/extending/publishing.html | ||
|
||
name: push_nuget | ||
|
||
# on push on main | ||
on: | ||
push: | ||
branches: | ||
- main | ||
paths-ignore: | ||
- README.md | ||
- .github/FUNDING.yml | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/checkout@master | ||
|
||
- name: Setup MSBuild.exe | ||
uses: microsoft/setup-msbuild@v2 | ||
|
||
- name: Setup Nuget.exe | ||
uses: nuget/[email protected] | ||
|
||
- name: Publish VL Nuget | ||
uses: vvvv/[email protected] | ||
with: | ||
csproj: src\VL.SuperCollider.csproj | ||
nuspec: deployment\VL.SuperCollider.nuspec | ||
|
||
# Fill the Icon file | ||
icon-src: https://raw.githubusercontent.com/vvvv/PublicContent/master/nugeticon.png | ||
icon-dst: ./deployment/nugeticon.png | ||
|
||
# Provide the nuget key. See: https://thegraybook.vvvv.org/reference/extending/publishing.html#getting-a-nugetorg-api-key | ||
nuget-key: ${{ secrets.NUGET_KEY }} |
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,26 @@ | ||
<?xml version="1.0"?> | ||
|
||
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd"> | ||
<metadata> | ||
<id>VL.SCSynth</id> | ||
<version>0.0.1-alpha</version> | ||
<title>VL.SCSynth</title> | ||
<authors>cnisidis, chk</authors> | ||
<projectUrl></projectUrl> | ||
<repository type="git" url="https://github.com/cnisidis/VL.SCSynth.git" /> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>SuperCollider Server Library, foundation for vvvv and SC integration</description> | ||
<tags>VL, vvvv, SuperCollider</tags> | ||
<license type="expression">LGPL-3.0-only</license> | ||
<icon>icon\nugeticon.png</icon> | ||
<readme>docs\README.md</readme> | ||
</metadata> | ||
<files> | ||
<!-- <file src="..\lib\**\*.dll" target="lib\" exclude="" /> --> | ||
<!-- <file src="..\runtimes\**\*.dll" target="runtimes\" exclude="" /> --> | ||
<file src="..\*.vl" target="" exclude="" /> | ||
<file src="..\help\**" target="help\" exclude="" /> | ||
<file src="nugeticon.png" target="icon\" /> | ||
<file src="..\README.md" target="docs\" /> | ||
</files> | ||
</package> |