-
Notifications
You must be signed in to change notification settings - Fork 0
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
1dc637e
commit 85ad160
Showing
4 changed files
with
131 additions
and
2 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,25 @@ | ||
name: push_nuget | ||
|
||
# on push on main | ||
on: | ||
push: | ||
branches: | ||
- main | ||
paths-ignore: | ||
- README.md | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/checkout@main | ||
|
||
- name: Setup Nuget.exe | ||
uses: nuget/setup-nuget@v1 | ||
|
||
- name: Publish VL Nuget | ||
uses: vvvv/PublishVLNuget@1.0.29 | ||
with: | ||
nuspec: deployment\VL.TK.AdventOfCode24.nuspec | ||
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,37 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Document xmlns:p="property" xmlns:r="reflection" Id="MdzBw4aGuGqMIWsJ0QitEm" LanguageVersion="2024.6.6" Version="0.128"> | ||
<NugetDependency Id="Dg7JH8L9BsYOvZgtxBTe6w" Location="VL.CoreLib" Version="2024.6.6" /> | ||
<Patch Id="PqTgCcG39TNQdT9TiGuj2f"> | ||
<Canvas Id="CKGpisE2n8XPSvEnGxXbpz" DefaultCategory="Main" BordersChecked="false" CanvasType="FullCategory" /> | ||
<!-- | ||
************************ Application ************************ | ||
--> | ||
<Node Name="Application" Bounds="100,100" Id="D4X4hB8xNoSQcyTgAvl3xe"> | ||
<p:NodeReference> | ||
<Choice Kind="ContainerDefinition" Name="Process" /> | ||
<CategoryReference Kind="Category" Name="Primitive" /> | ||
</p:NodeReference> | ||
<Patch Id="JHcF9cN68dTNi6RI9if2uV"> | ||
<Canvas Id="EF8brzjB7V5M5bAVULmn90" CanvasType="Group"> | ||
<Pad Id="PuQEF7Hc3hDLfyGi7orxIZ" Bounds="91,63,226,19" ShowValueBox="true" isIOBox="true" Value="Nothing here, check the helppatches"> | ||
<p:TypeAnnotation LastCategoryFullName="Primitive" LastDependency="VL.CoreLib.vl"> | ||
<Choice Kind="TypeFlag" Name="String" /> | ||
</p:TypeAnnotation> | ||
<p:ValueBoxSettings> | ||
<p:fontsize p:Type="Int32">9</p:fontsize> | ||
<p:stringtype p:Assembly="VL.Core" p:Type="VL.Core.StringType">Comment</p:stringtype> | ||
</p:ValueBoxSettings> | ||
</Pad> | ||
</Canvas> | ||
<Patch Id="NPYTh5y3xvSLeep1iNqnnA" Name="Create" /> | ||
<Patch Id="IFQXs5p8MlMMb72wxzgh7X" Name="Update" /> | ||
<ProcessDefinition Id="ANF2Ed0u6l9MZ6cfqe42KO"> | ||
<Fragment Id="BFKqRnD8wooNwVOzCCpMOG" Patch="NPYTh5y3xvSLeep1iNqnnA" Enabled="true" /> | ||
<Fragment Id="RiiZ806jh2mPhUieu7fQQ9" Patch="IFQXs5p8MlMMb72wxzgh7X" Enabled="true" /> | ||
</ProcessDefinition> | ||
</Patch> | ||
</Node> | ||
</Patch> | ||
</Document> |
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,22 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd"> | ||
<metadata> | ||
<id>VL.TK.AdventOfCode24</id> | ||
<version>0.0.1</version> | ||
<title>VL.TK.AdventOfCode24</title> | ||
<authors>TobyKLight</authors> | ||
<owners>TobyKLight</owners> | ||
<projectUrl>https://github.com/TobyKLight/VL.TK.AdventOfCode24</projectUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<summary>Solutions to AdventOfCode24 in vvvv gamma</summary> | ||
<description>See TobyKLight youtube for explanations</description> | ||
<tags>VL, vvvv, advent of code 2024</tags> | ||
<license type="expression">CC0-1.0</license> | ||
<dependencies> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="..\*.vl" target="" exclude="" /> | ||
<file src="..\help\**" target="help\" exclude="" /> | ||
</files> | ||
</package> |
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