{"id":44424516,"url":"https://github.com/codebeltnet/nuget-push","last_synced_at":"2026-02-12T10:20:58.645Z","repository":{"id":231597327,"uuid":"782113027","full_name":"codebeltnet/nuget-push","owner":"codebeltnet","description":"An opinionated GitHub Action for publishing NuGet packages as part of your CD flow.","archived":false,"fork":false,"pushed_at":"2024-11-13T01:54:20.000Z","size":8,"stargazers_count":0,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-11-13T02:17:15.911Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codebeltnet.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-04-04T16:58:26.000Z","updated_at":"2024-11-13T01:54:24.000Z","dependencies_parsed_at":"2024-04-04T20:34:49.759Z","dependency_job_id":"9eae908d-9229-499f-b961-ac33a74e8d80","html_url":"https://github.com/codebeltnet/nuget-push","commit_stats":null,"previous_names":["codebeltnet/nuget-push"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/codebeltnet/nuget-push","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codebeltnet%2Fnuget-push","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codebeltnet%2Fnuget-push/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codebeltnet%2Fnuget-push/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codebeltnet%2Fnuget-push/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codebeltnet","download_url":"https://codeload.github.com/codebeltnet/nuget-push/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codebeltnet%2Fnuget-push/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29363053,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T08:51:36.827Z","status":"ssl_error","status_checked_at":"2026-02-12T08:51:26.849Z","response_time":55,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-02-12T10:20:54.659Z","updated_at":"2026-02-12T10:20:58.634Z","avatar_url":"https://github.com/codebeltnet.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# NuGet Push from Codebelt\n\nUses the NuGet CLI `nuget push` [command](https://learn.microsoft.com/en-us/nuget/reference/cli-reference/cli-ref-push) that pushes a package to a package source and publishes it. Leverages the official [setup-nuget action](https://github.com/nuget/setup-nuget/) pre-configured specifically for the majority.\n\n\u003e This action is part of the Codebelt umbrella and ensures a consistent way of: \n\u003e \n\u003e - Defining your CI/CD pipeline \n\u003e - Structuring your repository\n\u003e - Keeping your codebase small and feasible\n\u003e - Writing clean and maintainable code\n\u003e - Deploying your code to different environments\n\u003e - Automating as much as possible\n\u003e\n\u003e A paved path to excel as a DevSecOps Engineer.\n\n## Usage\n\nTo use this action in your GitHub repository, you can follow these steps:\n\n```yaml\nuses: codebeltnet/nuget-push@v2\n```\n\n### Inputs\n\n```yaml\nwith:\n  # The NuGet package source URL. Default is https://api.nuget.org/v3/index.json.\n  source: 'https://api.nuget.org/v3/index.json'\n  # Sets the verbosity level of the command. \n  # Allowed values are quiet, normal and detailed.\n  verbosity-level: 'quiet'\n```\n\n### Outputs\n\nThis action has no outputs.\n\n## Examples\n\n### Deploy to nuget\u0026#46;org\n\n```yaml\nsteps:\n  - name: Push packages to NuGet\n    uses: codebeltnet/nuget-push@v2\n```\n\n\u003e [!TIP]\n\u003e To have a complete experience for pushing NuGet packages to a feed, consider using the [jobs-nuget-push](https://github.com/codebeltnet/jobs-nuget-push) reusable workflow.\n\n## Caller workflows to showcase the Codebelt experience\n\n### Basic CI/CD Pipeline\n\n- Bootstrapper API - https://github.com/codebeltnet/bootstrapper/blob/main/.github/workflows/pipelines.yml\n- Extensions for Asp.Versioning API - https://github.com/codebeltnet/asp-versioning/blob/main/.github/workflows/pipelines.yml\n- Extensions for AWS Signature Version 4 API - https://github.com/codebeltnet/aws-signature-v4/blob/main/.github/workflows/pipelines.yml\n- Extensions for Globalization API - https://github.com/codebeltnet/globalization/blob/main/.github/workflows/pipelines.yml\n- Extensions for Newtonsoft.Json API - https://github.com/codebeltnet/newtonsoft-json/blob/main/.github/workflows/pipelines.yml\n- Extensions for Swashbuckle.AspNetCore API - https://github.com/codebeltnet/swashbuckle-aspnetcore/blob/main/.github/workflows/pipelines.yml\n- Extensions for xUnit API - https://github.com/codebeltnet/xunit/blob/main/.github/workflows/pipelines.yml\n- Extensions for YamlDotNet API - https://github.com/codebeltnet/yamldotnet/blob/main/.github/workflows/pipelines.yml\n- Shared Kernel API - https://github.com/codebeltnet/shared-kernel/blob/main/.github/workflows/pipelines.yml\n- Unitify API - https://github.com/codebeltnet/unitify/blob/main/.github/workflows/pipelines.yml\n\n### Intermediate CI/CD Pipeline\n\n- Savvy I/O - https://github.com/codebeltnet/savvyio/blob/main/.github/workflows/pipelines.yml\n\n### Advanced CI/CD Pipeline\n\n- Cuemon for .NET - https://github.com/gimlichael/Cuemon/blob/main/.github/workflows/pipelines.yml\n\n## Contributing to NuGet Push from Codebelt\n\nContributions are welcome! \nFeel free to submit issues, feature requests, or pull requests to help improve this action.\n\n### License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n\u003e [!TIP]\n\u003e To learn more about the Codebelt experience and offerings, visit our [organization page](https://github.com/codebeltnet) on GitHub.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodebeltnet%2Fnuget-push","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodebeltnet%2Fnuget-push","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodebeltnet%2Fnuget-push/lists"}