Skip to content

Commit

Permalink
[Version] Bump version to v0.6.3 (#37)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
HaiyiMei and github-actions[bot] authored Aug 5, 2024
1 parent 1ea3c85 commit a06a9fa
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .circleci/continue_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,14 @@ jobs:
- run:
name: Clone GitHub repository
command: |
git clone << pipeline.project.git_url >> --branch << pipeline.git.branch >> .
TAG="<< pipeline.git.tag >>"
BRANCH="<< pipeline.git.branch >>"
# If the branch is empty, use the tag as the branch
if [ -z "\$BRANCH" ]; then
BRANCH=\$TAG
fi
echo "Cloning \$BRANCH branch"
git clone << pipeline.project.git_url >> --branch \$BRANCH .
- run:
name: "Build Plugins & Run Tests"
shell: powershell.exe
Expand Down

0 comments on commit a06a9fa

Please sign in to comment.