Skip to content

Commit

Permalink
fix variable setting
Browse files Browse the repository at this point in the history
  • Loading branch information
f-peverali committed Oct 4, 2024
1 parent cd01761 commit 8908591
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ToolUpdate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
LATEST_VERSION=$(curl -s https://api.github.com/repos/FirelyTeam/firely-terminal-pipeline/releases/latest | jq -r .tag_name)
echo "LATEST_VERSION=$LATEST_VERSION" >> $GITHUB_ENV
- name: Debug LATEST_VERSION
run: echo "LATEST_VERSION is $LATEST_VERSION"

- name: Update PR template version
run: |
# Update the version in PR_Template_VersionUpgrade.md
Expand All @@ -49,7 +52,7 @@ jobs:
uses: peter-evans/create-pull-request@v4
with:
commit-message: "Update dependency to version $LATEST_VERSION"
branch: update-dependency-$LATEST_VERSION
branch: update-dependency-${{ env.LATEST_VERSION }}
title: "Update dependency to version $LATEST_VERSION"
body: "This PR updates the dependency to version $LATEST_VERSION."
labels: |
Expand Down

0 comments on commit 8908591

Please sign in to comment.