Skip to content

Commit

Permalink
[ops] - updated console deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
emilbon99 committed Jun 13, 2024
1 parent 399c48b commit c545f52
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.console.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
if [ "${GITHUB_REF}" == "refs/heads/main" ]; then
echo "VERSION=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT
else
echo "VERSION=$(node -p "require('./package.json').version").rc" >> $GITHUB_OUTPUT
echo "VERSION=$(node -p "require('./package.json').version")-rc" >> $GITHUB_OUTPUT
fi
- name: Diff Changes
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
- name: Adjust Auto Updater URL for Release Candidate
if: github.event_name == 'push' && github.ref == 'refs/heads/rc'
working-directory: ./console/src-tauri
run: jq '.plugins.updater.endpoints = "https://raw.githubusercontent.com/synnaxlabs/synnax/rc/console/release-spec.json"' tauri.config.json > temp.json && mv temp.json tauri.config.json
run: jq '.plugins.updater.endpoints = "https://raw.githubusercontent.com/synnaxlabs/synnax/rc/console/release-spec.json"' tauri.conf.json > temp.json && mv temp.json tauri.conf.json

- name: Build Console
if: needs.setup.outputs.changed == 'true'
Expand Down
2 changes: 1 addition & 1 deletion console/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@synnaxlabs/console",
"private": true,
"version": "0.22.33",
"version": "0.23.0",
"type": "module",
"scripts": {
"dev": "tauri dev",
Expand Down

0 comments on commit c545f52

Please sign in to comment.