Skip to content

Commit

Permalink
OPS: Mark version as a beta
Browse files Browse the repository at this point in the history
  • Loading branch information
cortadocodes committed Jun 27, 2024
1 parent ae94287 commit 47c2ad7
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 git && rm -rf /var/lib/apt/lists/*

RUN pip install git+https://github.com/octue/create-push-subscription.git@0.4.1
RUN pip install git+https://github.com/octue/create-push-subscription.git@0.4.1.beta-0

COPY create_push_subscription/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:
run: echo "PACKAGE_VERSION=$(poetry version -s)" >> $GITHUB_OUTPUT
# run: echo "PACKAGE_VERSION=$(python setup.py --version)" >> $GITHUB_OUTPUT <- Use this instead if your package uses a `setup.py` file.

- uses: octue/create-push-subscription@0.4.1
- uses: octue/create-push-subscription@0.4.1.beta-0
with:
project_name: project-name
service_namespace: my-org
Expand Down
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ inputs:

runs:
using: 'docker'
image: 'docker://octue/create-push-subscription:0.4.1'
image: 'docker://octue/create-push-subscription:0.4.1.beta-0'
args:
- ${{ inputs.project_name }}
- ${{ inputs.service_namespace }}
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 = "create-push-subscription"
version = "0.4.1"
version = "0.4.1.beta-0"
description = "A GitHub action that creates a Google Pub/Sub push subscription for an Octue service."
authors = ["Marcus Lugg <marcus@octue.com>"]
readme = "README.md"
Expand Down

0 comments on commit 47c2ad7

Please sign in to comment.