Skip to content

Commit

Permalink
OPS: Fix version number
Browse files Browse the repository at this point in the history
  • Loading branch information
cortadocodes committed Apr 25, 2024
1 parent 79a1cf8 commit 7bee3b6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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/[email protected].2
RUN pip3 install git+https://github.com/octue/[email protected].3

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/[email protected].2
uses: octue/[email protected].3
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 @@ -61,7 +61,7 @@ outputs:

runs:
using: "docker"
image: "docker://octue/get-deployment-info:0.3.2"
image: "docker://octue/get-deployment-info:0.3.3"
args:
- ${{ inputs.gcp_project_name }}
- ${{ inputs.gcp_project_number }}
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.2"
version = "0.3.3"
description = "A Github Action that gets the information required to build and deploy an Octue service."
authors = ["Marcus Lugg <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 7bee3b6

Please sign in to comment.