From 63eb3d209de9db1ae198bde1babc549f28a2a74e Mon Sep 17 00:00:00 2001 From: Dimitri Gnidash Date: Thu, 6 Jun 2024 15:32:09 -0400 Subject: [PATCH] #8534: Edits to gitlab variables --- .github/workflows/docs-deployment.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docs-deployment.yaml b/.github/workflows/docs-deployment.yaml index 99ae0815d8a..25d80852af2 100644 --- a/.github/workflows/docs-deployment.yaml +++ b/.github/workflows/docs-deployment.yaml @@ -72,9 +72,9 @@ jobs: - name: Push docs to Docs repo for publishing run: | pip install -r requirements.txt - cp -r ../docs/public/md/* tt-metalium # Copy the files - python update_tags.py tt-metalium $$CI_COMMIT_TAG + TAG=latest-tt-metalium + python update_tags.py tt-metalium $TAG git add . - git commit -m "update tt-metalium docs from pipeline $CI_PIPELINE_ID with tag $CI_COMMIT_TAG" - git tag -a $CI_COMMIT_TAG -m "tt-metalium documentation version $CI_COMMIT_TAG" + git commit -m "update tt-metalium docs from pipeline ${{ github.job }} with tag $TAG" + git tag -a $TAG -m "tt-metalium documentation version $TAG" git push && git push --tags