{"id":50720630,"url":"https://github.com/lee-lott-actions/deploy-to-octopus","last_synced_at":"2026-06-10T00:00:18.683Z","repository":{"id":356752655,"uuid":"1137792186","full_name":"lee-lott-actions/deploy-to-octopus","owner":"lee-lott-actions","description":"Automates the creation of an Octopus Deploy release by pushing a package, uploading build information, and creating a release for a specified project and channel.","archived":false,"fork":false,"pushed_at":"2026-06-09T15:01:14.000Z","size":25,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-09T16:09:59.814Z","etag":null,"topics":["devops"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lee-lott-actions.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-19T20:59:57.000Z","updated_at":"2026-06-09T15:03:03.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/lee-lott-actions/deploy-to-octopus","commit_stats":null,"previous_names":["lee-lott-actions/deploy-to-octopus"],"tags_count":2,"template":false,"template_full_name":"lee-lott-actions/template-github-action-repo","purl":"pkg:github/lee-lott-actions/deploy-to-octopus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lee-lott-actions%2Fdeploy-to-octopus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lee-lott-actions%2Fdeploy-to-octopus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lee-lott-actions%2Fdeploy-to-octopus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lee-lott-actions%2Fdeploy-to-octopus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lee-lott-actions","download_url":"https://codeload.github.com/lee-lott-actions/deploy-to-octopus/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lee-lott-actions%2Fdeploy-to-octopus/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34130642,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-09T02:00:06.510Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["devops"],"created_at":"2026-06-10T00:00:17.211Z","updated_at":"2026-06-10T00:00:18.625Z","avatar_url":"https://github.com/lee-lott-actions.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Create Octopus Deploy Release GitHub Action\n\nThis GitHub Action automates the creation of a new release in Octopus Deploy by pushing a package, uploading build information, and creating a release for a specified project and channel.\n\n## Features\n- Pushes a package to Octopus Deploy with overwrite support.\n- Generates and uploads build information, including GitHub run details.\n- Creates a release in the specified Octopus Deploy project and channel.\n- Appends deployment details to the GitHub job summary.\n- Uses the `octo.exe` CLI for Octopus Deploy interactions.\n\n## Inputs\n| Name | Description | Required |\n|------|-------------|----------|\n| `octopus-url` | The instance URL hosting Octopus Deploy | Yes |\n| `octopus-api-key` | The API key used to access Octopus Deploy | Yes |\n| `octopus-space` | The name of the Octopus Deploy space within which this command will be executed | Yes |\n| `octopus-project-name` | The name of the Octopus Deploy project associated with this release | Yes |\n| `octopus-channel-name` | The name of the Octopus Deploy channel to use for the new release | Yes |\n| `octopus-package-name` | The name of the Octopus Deploy package to use for this release | Yes |\n| `octopus-package-version` | The version number of the package to use for this release | Yes |\n| `octopus-package-path` | The full path to the package to upload to Octopus Deploy | Yes |\n\n## Usage\nTo use this action, create a workflow file in your repository (e.g., `.github/workflows/create-octopus-release.yml`) and reference the action. Ensure the `octopus-api-key` has the necessary permissions to interact with Octopus Deploy, and the package file is accessible in the workflow environment.\n\n**Note:** This action requires the `octo.exe` CLI and should be run on a **self-hosted runner** configured with a Windows environment to ensure compatibility with the CLI and related dependencies.\n\n### Example Workflow\n```yaml\nname: Create Octopus Deploy Release\non:\n  workflow_dispatch:\n    inputs:\n      octopus-project-name:\n        description: 'Octopus Deploy project name'\n        required: true\n      octopus-channel-name:\n        description: 'Octopus Deploy channel name'\n        required: true\n      octopus-package-name:\n        description: 'Package name for the release'\n        required: true\n      octopus-package-version:\n        description: 'Package version for the release'\n        required: true\n      octopus-package-path:\n        description: 'Path to the package file'\n        required: true\n\njobs:\n  create-release:\n    runs-on: self-hosted\n    steps:\n      - name: Checkout Repository\n        uses: actions/checkout@v6\n\n      - name: Create Octopus Deploy Release\n        uses: lee-lott-actions/deploy-to-octopus@v1\n        with:\n          octopus-url: ${{ secrets.OCTOPUS_URL }}\n          octopus-api-key: ${{ secrets.OCTOPUS_API_KEY }}\n          octopus-space: 'Default'\n          octopus-project-name: ${{ github.event.inputs.octopus-project-name }}\n          octopus-channel-name: ${{ github.event.inputs.octopus-channel-name }}\n          octopus-package-name: ${{ github.event.inputs.octopus-package-name }}\n          octopus-package-version: ${{ github.event.inputs.octopus-package-version }}\n          octopus-package-path: ${{ github.event.inputs.octopus-package-path }}\n      - name: View Summary\n        run: cat $GITHUB_STEP_SUMMARY\n        shell: bash\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flee-lott-actions%2Fdeploy-to-octopus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flee-lott-actions%2Fdeploy-to-octopus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flee-lott-actions%2Fdeploy-to-octopus/lists"}