Skip to content

Commit

Permalink
chore: debug logging to cd
Browse files Browse the repository at this point in the history
  • Loading branch information
VannaDii committed Dec 10, 2023
1 parent 66faeae commit eb84df2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,12 @@ jobs:
IFS=. read -r v1 v2 v3 <<< "${LATEST_TAG}" # split into (integer) components
((v3++)) # do the math
LATEST_TAG="${v1}.${v2}.${v3}"
echo "Updated tag to $LATEST_TAG"
echo "Updating dist js"
git commit -a -m "chore: updates dist js" --author="github-actions[bot] <github-actions[bot]@users.noreply.github.com>"
echo "Pushing tag $LATEST_TAG"
git tag -f "$LATEST_TAG" -m "Version $LATEST_TAG"
echo "Pushing tag latest"
git tag -f latest -m "The latest version"
- name: 📌 Commit & Push
Expand Down

0 comments on commit eb84df2

Please sign in to comment.