This GitHub action is deprecated and is no longer maintained. Please use IBM Cloud CLI action instead.
All input parameters for this GitHub action are ignored. If you call this GitHub action in your workflow you will see the following warning:
This GitHub action is deprecated and is no longer maintained. Please use https://github.com/marketplace/actions/ibm-cloud-cli instead
A GitHub action to configure the IBM Cloud CLI and install plug-ins. It is usually used to integrate with your custom workflow or other IBM Cloud GitHub actions:
- name: Configure IBM Cloud CLI
uses: dprosper/[email protected]
with:
API_KEY: ${{ secrets.API_KEY }}
INSTALL_PLUGINS: code-engine,container-service
REGION: eu-de
RESOURCE_GROUP: solutions
Name | Description | Default |
---|---|---|
API_KEY |
API Key used for login. | |
INSTALL_PLUGINS |
Comma separated list of plug-ins to install. Obtain a list of available plug-ins in the documentation. | |
REGION |
Name of region, such as 'us-south' or 'eu-gb'. | us-east |
RESOURCE_GROUP |
Resource Group Name or ID. | default |
Note: Only the IBM Cloud official plug-in repository is supported in this action.
For this action you can lock the version to use by specifying it like this: dprosper/[email protected]
.
This action will always install the latest versions of the CLI and selected plug-ins. If you really need to, you can control the version of a plug-in used by specifing a specific version like this: [email protected]
.