diff options
author | 2024-08-19 02:40:24 +0100 | |
---|---|---|
committer | 2024-08-19 02:40:24 +0100 | |
commit | 92bb86a4e34a411ed3900a0b5ea755c30e97fd46 (patch) | |
tree | a8c0f37b98f5e2432bdaa8f7e2e2a9ba8db684c5 /.github | |
parent | Fetch semver without poetry (diff) |
Correct numbskull typing
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build-deploy.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build-deploy.yaml b/.github/workflows/build-deploy.yaml index 7ab8a02..3ca4fa0 100644 --- a/.github/workflows/build-deploy.yaml +++ b/.github/workflows/build-deploy.yaml @@ -37,7 +37,7 @@ jobs: - name: Fetch project version (Backend) if: ${{ inputs.project == 'backend' }} run: >- - echo "THALLIUM_SEMVER=$(cat pyproject.toml | grep '^version =') | grep -Po '(\d+\.){2}\d+')" >> $GITHUB_ENV + echo "THALLIUM_SEMVER=$(cat pyproject.toml | grep '^version =' | grep -Po '(\d+\.){2}\d+')" >> $GITHUB_ENV # Build and push the container to the GitHub Container # Repository. The container will be tagged as "latest" |