Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Version] Bump version to v0.6.3 #36

Closed
wants to merge 13 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
5 changes: 5 additions & 0 deletions xrfeitoria/utils/plugin_infos.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
{
"0.7.0": {
"XRFeitoria": "0.7.0",
"XRFeitoriaBpy": "0.6.2",
"XRFeitoriaUnreal": "0.6.2"
},
"0.6.3": {
"XRFeitoria": "0.6.3",
"XRFeitoriaBpy": "0.6.2",
Expand Down
Loading