Skip to content

Commit a8fb9e3

Browse files
Fix Container Building Action
1 parent 03ea8a8 commit a8fb9e3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build-containers.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
3232
- name: Edit Software Version via Kustomize
3333
run: |
34-
sed -i -e "s/version = .*/version = '${TAG_NAME}'/" pyproject.toml
34+
sed -i -e "s/^version = .*/version = '${TAG_NAME}'/" pyproject.toml
3535
3636
pushd compose_api
3737
sed -i -e "s/__version__ = .*/__version__ = '${TAG_NAME}'/" version.py
@@ -43,7 +43,7 @@ jobs:
4343
author_name: Ezequiel-Valencia
4444
author_email: [email protected]
4545
branch: main
46-
message: 'Changed version tag to ${TAG_NAME}'
46+
message: 'Changed version tag to ${{ env.TAG_NAME }}'
4747
signoff: true
4848
env:
4949
# This is necessary in order to push a commit to the repo

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ exclude = [".venv/*"]
107107
ignore = ["DEP002", "DEP003", "DEP004"]
108108

109109
[tool.ruff]
110-
target-version = '0.2.3'
110+
target-version = 'py39'
111111
line-length = 120
112112
fix = true
113113

0 commit comments

Comments
 (0)