Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/deploy'
Browse files Browse the repository at this point in the history
  • Loading branch information
cnisidis committed Nov 30, 2024
2 parents 20dc226 + b707c5a commit 633af93
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/main.yml
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 }}
26 changes: 26 additions & 0 deletions deployment/VL.SCSynth.nuspec
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>

0 comments on commit 633af93

Please sign in to comment.