Skip to content

Commit

Permalink
FIX: Fix typo in GCP_ENVIRONMENT_KEBAB
Browse files Browse the repository at this point in the history
  • Loading branch information
cortadocodes committed Feb 6, 2024
1 parent 5879b07 commit c652ffc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM python:3.10.7-slim

RUN apt-get update -y && apt-get install -y --fix-missing curl git && rm -rf /var/lib/apt/lists/*

RUN pip3 install git+https://github.com/octue/get-deployment-info@0.3.0
RUN pip3 install git+https://github.com/octue/get-deployment-info@0.3.1

COPY get_deployment_info/entrypoint.sh /entrypoint.sh

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ steps:

- name: Get deployment info
id: get-deployment-info
uses: octue/get-deployment-info@0.3.0
uses: octue/get-deployment-info@0.3.1
with:
gcp_project_name: test-project
gcp_project_number: 1234
Expand Down
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ outputs:
description: "If the branch is 'main', this is 'PRODUCTION'; otherwise it's 'STAGING'."
runs:
using: "docker"
image: "docker://octue/get-deployment-info:0.3.0"
image: "docker://octue/get-deployment-info:0.3.1"
args:
- ${{ inputs.gcp_project_name }}
- ${{ inputs.gcp_project_number }}
Expand Down
2 changes: 1 addition & 1 deletion get_deployment_info/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ if [ "$BRANCH_TAG_KEBAB" = "main" ]; then
REVISION_TAG=$VERSION
IMAGE_VERSION_TAG="$BRANCH_TAG_KEBAB-$REVISION_TAG"
IMAGE_LATEST_TAG="$BRANCH_TAG_KEBAB-latest"
GCP_ENVIRONMENT=production >> $GITHUB_OUTPUT
GCP_ENVIRONMENT_KEBAB=production >> $GITHUB_OUTPUT
GCP_ENVIRONMENT_SCREAMING=PRODUCTION >> $GITHUB_OUTPUT
else
REVISION_TAG=$(expr substr "$BRANCH_TAG_KEBAB" 1 12)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "get-deployment-info"
version = "0.3.0"
version = "0.3.1"
description = "A Github Action that gets the information required to build and deploy an Octue service."
authors = ["Marcus Lugg <marcus@octue.com>"]
readme = "README.md"
Expand Down

0 comments on commit c652ffc

Please sign in to comment.