Skip to content

Commit

Permalink
wip: 🚧 create 12.4.0 test builds
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobiClark committed Dec 4, 2023
1 parent c70e32c commit 4ec7fe3
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/Build-and-deploy-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
push:
branches:
- main
- staging

jobs:
deploy-on-linux:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/Build-and-deploy-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
push:
branches:
- main
- staging

jobs:
deploy-on-mac:
runs-on: macos-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/Build-and-deploy-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
push:
branches:
- main
- staging

jobs:
deploy-on-windows:
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "soda-for-sparc",
"productName": "SODA for SPARC",
"version": "12.4.5-beta",
"version": "12.4.0-beta",
"description": "Keep Calm and Curate ",
"main": "main.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion pyflask/startup/minimumApiVersion.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ def get_api_version():
"""
Returns the version of the API
"""
return {'version': os.getenv('API_VERSION', "12.4.5-beta")}
return {'version': os.getenv('API_VERSION', "12.4.0-beta")}
1 change: 1 addition & 0 deletions scripts/guided-mode/guided-curate-dataset.js
Original file line number Diff line number Diff line change
Expand Up @@ -11851,6 +11851,7 @@ const guidedOpenEntityAdditionSwal = async (entityName) => {
showConfirmButton: true,
showCancelButton: true,
showCloseButton: false,
allowOutsideClick: false,
confirmButtonText: `Confirm`,
cancelButtonText: `Cancel`,
didOpen: () => {
Expand Down
1 change: 0 additions & 1 deletion scripts/others/update-path-darwin.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
*/
const fixPath = () => {
if (process.platform == "darwin") {

process.env.PATH = [
"./node_modules/.bin",
"/.nodebrew/current/bin",
Expand Down
2 changes: 1 addition & 1 deletion scripts/utils/swal-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,4 +182,4 @@ const swalConfirmAction = async (title, text, confirmButtonText, cancelButtonTex
cancelButtonText: cancelButtonText,
});
return action;
};
};

0 comments on commit 4ec7fe3

Please sign in to comment.