Skip to content

nuget config

nuget config #1

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: nuget config
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
# Runs a set of commands using the runners shell
- name: check ~/.nuget/NuGet/NuGet.Config before
run: cat ~/.nuget/NuGet/NuGet.Config
- name: Run a multi-line script
run: nuget config -Set maxHttpRequestsPerSource=64
- name: check ~/.nuget/NuGet/NuGet.Config after
run: cat ~/.nuget/NuGet/NuGet.Config