octue/Get deployment information
Get the information required to build and deploy an Octue Twined service.
View on GitHubTrust Signals
- Scorecard Score
- Scorecard 2–4scored Jul 6, 2026
- Maintenance Recency
- Maintainedlast commit Feb 24, 2025
- License
- MIT
Pinned Snippet
uses: octue/get-deployment-info@727a9f290c41d39c1067193c63eb30e756917111 # 0.4.2tags can be moved; commit SHAs can't. why a SHA?
Inputs
| name | description | required | default |
|---|---|---|---|
| gcp_project_name | The name of the Google Cloud project being deployed to. | yes | — |
| gcp_project_number | The number of the Google Cloud project being deployed to. | yes | — |
| gcp_region | The Google Cloud region being deployed to. | yes | — |
| gcp_resource_affix | A label to affix to the names of the resources created during deployment. This helps avoid confusion about what resources belong to what applications and aids cleanup of old resources. | yes | — |
| gcp_service_name | The name of the service being deployed. | yes | — |
Outputs
| name | description |
|---|---|
| branch_tag_kebab | The tag or branch name in kebab case. |
| branch_tag_screaming | The tag or branch name in screaming snake case. |
| image_latest_artifact | The artifact URI for the latest docker image. |
| image_latest_tag | The tag of the latest docker image for the service. |
| image_version_artifact | The artifact URI for the docker image for the version to deploy. |
| image_version_tag | The tag of the docker image for the version. |
| image_default_artifact | The artifact URI for the default docker image for the service. |
| short_sha | The short SHA of the HEAD commit being deployed. |
| version | The version in pyproject.toml or setup.py. |
| version_slug | The version in pyproject.toml or setup.py (slugified). |
| revision_tag | The revision tag to use for deployment (can be a branch name). |
| revision_tag_slug | The revision tag to use for deployment (can be a branch name) (slugified). |
| gcp_project_name | The name of the Google Cloud project being deployed to. |
| gcp_project_number | The number of the Google Cloud project being deployed to. |
| gcp_region | The Google Cloud region being deployed to. |
| gcp_resource_affix | A label to affix to the names of the resources created during deployment. This helps avoid confusion about what resources belong to what applications and aids cleanup of old resources. |
| gcp_service_name | The name of the service being deployed. |
| gcp_environment_kebab | If the branch is 'main', this is 'production'; otherwise it's 'staging'. |
| gcp_environment_screaming | If the branch is 'main', this is 'PRODUCTION'; otherwise it's 'STAGING'. |