Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [1.0.0](https://github.com/OctopusDeploy/create-release-buildkite-plugin/compare/v0.1.1...v1.0.0) (2026-08-19)


### ⚠ BREAKING CHANGES

* `api_key` now takes the API key itself rather than the name of an environment variable to eval. `what_if`, `packages_folder` and `package_prerelease` are rejected, because the octopus CLI has no equivalent and silently ignoring them would change what a build does. config_file, log_level, timeout, proxy, proxy_username, proxy_password and ignore_ssl_errors warn and are ignored. OCTOPUS_CLI_SERVER and OCTOPUS_CLI_API_KEY are no longer read.

### Features

* migrate from the retired octo CLI to the octopus CLI ([a6688fe](https://github.com/OctopusDeploy/create-release-buildkite-plugin/commit/a6688fe657c5fbb0c33e2f65618a364572fb5fee))

### [0.1.1](https://github.com/OctopusDeploy/create-release-buildkite-plugin/compare/v0.1.0...v0.1.1) (2022-02-21)


Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ steps:
- OctopusDeploy/octopus-login#v1.0.0:
server: "https://my.octopus.app"
service_account_id: "d5de4670-4678-4c08-9479-09555cd6ccbb"
- OctopusDeploy/create-release#v0.1.1:
- OctopusDeploy/create-release#v1.0.0
project: "HelloWorld"
```

Expand All @@ -48,7 +48,7 @@ Incorporate the following step in your `pipeline.yml` to create a release in Oct
steps:
- label: ":octopus-deploy: Create a release in Octopus Deploy"
plugins:
- OctopusDeploy/create-release#v0.1.1:
- OctopusDeploy/create-release#v1.0.0
api_key: "${MY_OCTOPUS_API_KEY}"
project: "HelloWorld"
server: "${MY_OCTOPUS_SERVER}"
Expand All @@ -60,7 +60,7 @@ steps:
steps:
- label: ":octopus-deploy: Create a release in Octopus Deploy"
plugins:
- OctopusDeploy/create-release#v0.1.1:
- OctopusDeploy/create-release#v1.0.0
api_key: "${MY_OCTOPUS_API_KEY}"
project: "HelloWorld"
release_number: "1.0.3"
Expand All @@ -75,7 +75,7 @@ steps:
steps:
- label: ":octopus-deploy: Create a release in Octopus Deploy"
plugins:
- OctopusDeploy/create-release#v0.1.1:
- OctopusDeploy/create-release#v1.0.0
api_key: "${MY_OCTOPUS_API_KEY}"
git_ref: "main"
project: "HelloWorld"
Expand All @@ -91,7 +91,7 @@ steps:
steps:
- label: ":octopus-deploy: Create a release in Octopus Deploy"
plugins:
- OctopusDeploy/create-release#v0.1.1:
- OctopusDeploy/create-release#v1.0.0
api_key: "${MY_OCTOPUS_API_KEY}"
default_package_version: "1.0.1"
project: "HelloWorld"
Expand All @@ -105,7 +105,7 @@ steps:
steps:
- label: ":octopus-deploy: Create a release in Octopus Deploy"
plugins:
- OctopusDeploy/create-release#v0.1.1:
- OctopusDeploy/create-release#v1.0.0
api_key: "${MY_OCTOPUS_API_KEY}"
packages:
- "StepA:1.0.1"
Expand All @@ -121,7 +121,7 @@ steps:
steps:
- label: ":octopus-deploy: Create a release in Octopus Deploy"
plugins:
- OctopusDeploy/create-release#v0.1.1:
- OctopusDeploy/create-release#v1.0.0
api_key: "${MY_OCTOPUS_API_KEY}"
packages:
- "StepA:Acme.Web:1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.1
1.0.0
Loading