{"id":21313946,"url":"https://github.com/octopusdeploy/create-nuget-package-action","last_synced_at":"2025-07-12T01:30:55.637Z","repository":{"id":64695989,"uuid":"575826308","full_name":"OctopusDeploy/create-nuget-package-action","owner":"OctopusDeploy","description":"| Public | :octocat: GitHub Action to Create a NuGet Package for Octopus Deploy","archived":false,"fork":false,"pushed_at":"2025-07-10T04:16:01.000Z","size":2446,"stargazers_count":2,"open_issues_count":4,"forks_count":2,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-07-10T13:11:55.551Z","etag":null,"topics":["deployment","github-actions","octopus-deploy","public"],"latest_commit_sha":null,"homepage":"https://github.com/marketplace/actions/create-nuget-package-for-octopus-deploy","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/OctopusDeploy.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-12-08T11:41:39.000Z","updated_at":"2025-07-10T04:15:28.000Z","dependencies_parsed_at":"2024-02-01T05:25:14.525Z","dependency_job_id":"43c67f80-8157-4938-a46e-bfb4ee64e7ce","html_url":"https://github.com/OctopusDeploy/create-nuget-package-action","commit_stats":{"total_commits":25,"total_committers":5,"mean_commits":5.0,"dds":0.6,"last_synced_commit":"64e3cec8f57c50b3e7cdfabd006e4d1a24b94f4d"},"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/OctopusDeploy/create-nuget-package-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OctopusDeploy%2Fcreate-nuget-package-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OctopusDeploy%2Fcreate-nuget-package-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OctopusDeploy%2Fcreate-nuget-package-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OctopusDeploy%2Fcreate-nuget-package-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/OctopusDeploy","download_url":"https://codeload.github.com/OctopusDeploy/create-nuget-package-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OctopusDeploy%2Fcreate-nuget-package-action/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264923080,"owners_count":23683716,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["deployment","github-actions","octopus-deploy","public"],"created_at":"2024-11-21T18:09:26.052Z","updated_at":"2025-07-12T01:30:55.286Z","avatar_url":"https://github.com/OctopusDeploy.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# create-nuget-package-action\n\n\u003cimg alt= \"\" src=\"https://github.com/OctopusDeploy/create-nuget-package-action/raw/main/assets/github-actions-octopus.png\" /\u003e\n\nThis is a GitHub Action to create a NuGet package(s) to push to [Octopus Deploy](https://octopus.com/).\n\n## Examples\n\n```yml\nsteps:\n  - uses: actions/checkout@v3\n\n  # create a NuGet package from files in the \"reports\" folder; create package in \"packaging\" folder\n  - name: Create a NuGet package 🐙\n    uses: OctopusDeploy/create-nuget-package-action@v3\n    with:\n      package_id: 'DemoPackage'\n      version: '1.0.0'\n      output_folder: 'packaging'\n      base_path: reports\n      files: |\n        **/*.*\n      nuspec_description: package description\n      nuspec_authors: |\n        author 1\n        author 2\n      nuspec_release_notes: |\n        This is a multiline\n        release note\n```\n\n## 📥 Inputs\n\n| Name                   | Description                                                                          |\n| :--------------------- | :----------------------------------------------------------------------------------- |\n| `package_id`           | **Required.** Package id.                                                            |\n| `version`              | **Required.** Package version.                                                       |\n| `output_folder`        | **Required.** The folder to put the resulting package in.                            |\n| `base_path`            | **Required.** The base path for the input files.                                     |\n| `files`                | **Required.** Multi-line list of files to include in the package. Supports globbing. |\n| `nuspec_description`   | **Required.** Description to include in the Nuspec file.                             |\n| `nuspec_authors`       | **Required.** Multi-line list of authors to include in the Nuspec file.              |\n| `nuspec_release_notes` | Release notes to include in the Nuspec file.                                         |\n\n## 📤 Outputs\n\n| Name                | Description                                                   |\n| :------------------ | :------------------------------------------------------------ |\n| `package_file_path` | The full path to the package file that was created.           |\n| `package_filename`  | The filename, without the path, of the file that was created. |\n\n## Developers guide\n\n[Developers Guide](DEVELOPERS_GUIDE.md)\n\n## 🤝 Contributions\n\nContributions are welcome! :heart: Please read our [Contributing Guide](CONTRIBUTING.md) for information about how to get involved in this project.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foctopusdeploy%2Fcreate-nuget-package-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foctopusdeploy%2Fcreate-nuget-package-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foctopusdeploy%2Fcreate-nuget-package-action/lists"}