Finished 11, went back started adding solutions for 1 #4
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_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/[email protected] | |
with: | |
nuspec: deployment\VL.TK.AdventOfCode23.nuspec | |
nuget-key: ${{ secrets.NUGET_KEY }} |