Compare commits

...

3 Commits

Author SHA1 Message Date
izzy lyseggen 427e240648 ci: deploy filter tags 2022-06-10 12:12:20 +01:00
izzy lyseggen 99c67a0db9 chore(deps): stackoverflow and i are besties
testing out this workaround - will do a beta release
2022-06-10 12:00:00 +01:00
izzy lyseggen ba556d3268 ci: update tag parsing and ui build 2022-06-10 11:37:59 +01:00
4 changed files with 7381 additions and 4753 deletions
+6 -10
View File
@@ -12,9 +12,6 @@ jobs:
- image: "circleci/node:16"
steps:
- checkout
- run:
command: "rm package-lock.json"
working_directory: "ui"
- run:
command: "npm install"
working_directory: "ui"
@@ -43,12 +40,11 @@ jobs:
shell: powershell.exe
command:
| # If no tag, use 0.0.0.1 and don't make any YML (for testing only!)
$tag = if([string]::IsNullOrEmpty($env:CIRCLE_TAG)) { "0.0.1" } else { $env:CIRCLE_TAG }
$semver = $tag.replace("-beta","")
$version = "$($semver).$($env:CIRCLE_BUILD_NUM)"
$channel = "latest"
if($tag -like "*-beta") { $channel = "beta" }
# only create the yml if we have a tag
$tag = if([string]::IsNullOrEmpty($env:CIRCLE_TAG)) { "0.0.0" } else { $env:CIRCLE_TAG }
$semver = if($tag.Contains('/')) {$tag.Split("/")[1] } else { $tag }
$ver = if($semver.Contains('-')) {$semver.Split("-")[0] } else { $semver }
$channel = if($semver.Contains('-')) {$semver.Split("-")[1] } else { "latest" }
$version = "$($ver).$($env:CIRCLE_BUILD_NUM)"
New-Item -Force "speckle-sharp-ci-tools/Installers/sketchup/$channel.yml" -ItemType File -Value "version: $version"
echo $version
python patch_version.py $version
@@ -120,6 +116,6 @@ workflows:
- build-connector
filters:
tags:
only: /[0-9]+(\.[0-9]+)*/
only: /([0-9]+)\.([0-9]+)\.([0-9]+)(?:-\w+)?$/
branches:
ignore: /.*/ # For testing only! /ci\/.*/
+7370 -4742
View File
File diff suppressed because it is too large Load Diff
+2 -1
View File
@@ -13,9 +13,10 @@
"dependencies": {
"@speckle/objectloader": "^2.6.0",
"aws-sdk": "^2.981.0",
"core-js": "^3.6.5",
"core-js": "^3.22.8",
"debounce": "^1.2.1",
"mixpanel-browser": "^2.45.0",
"regenerator-runtime": "^0.13.9",
"register-service-worker": "^1.7.1",
"sqlite3": "^5.0.2",
"v-tooltip": "^2.1.3",
+3
View File
@@ -1,3 +1,6 @@
import 'core-js/stable'
import 'regenerator-runtime/runtime'
import Vue from 'vue'
import App from './App.vue'
import router from './router'