Skip to content
This repository was archived by the owner on Nov 12, 2020. It is now read-only.
/ Setup-Nuget Public archive
generated from actions/typescript-action

Set up your GitHub Actions workflow with the latest version of Nuget.exe CLI tool

License

Notifications You must be signed in to change notification settings

warrenbuckley/Setup-Nuget

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

f9bcea1 · Nov 12, 2020

History

23 Commits
Nov 5, 2019
Aug 16, 2019
Aug 16, 2019
Aug 19, 2019
Aug 19, 2019
Aug 19, 2019
Aug 16, 2019
Nov 12, 2020
Aug 19, 2019
Aug 16, 2019
Aug 16, 2019
Aug 16, 2019
Aug 16, 2019

Repository files navigation

setup-nuget

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

Status: Archived

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

Usage

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

License

The scripts and documentation in this project are released under the MIT License

Contributions

Contributions are welcome! See Contributor's Guide