Setup Nuget.exe
ActionsTags
(2)This action setsup Nuget.exe as a CLI tool for use in actions by:
- optionally downloading and caching a version of nuget.exe and adds to PATH for future steps to use
This GitHub action is now retired/archived as I have collobrated directly with Microsoft to release an official MSBuild GitHub Action https://github.com/NuGet/setup-nuget
https://github.com/marketplace/actions/setup-nuget-exe-for-use-with-actions
Basic:
steps:
name: ASP.NET CI
on: [push]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@master
- name: Setup Nuget.exe
uses: warrenbuckley/Setup-Nuget@v1
- name: Nuget Push
run: nuget push *.nupkg
The scripts and documentation in this project are released under the MIT License
Contributions are welcome! See Contributor's Guide
Setup Nuget.exe is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.