This repository has been archived by the owner on Jun 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
96 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ jobs: | |
with: | ||
node-version: 12 | ||
registry-url: https://registry.npmjs.org/ | ||
- name: Build and Registry publish | ||
- name: Build and WNS publish | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "DXOS" | ||
|
@@ -38,13 +38,13 @@ jobs: | |
git push --tags -f | ||
yarn lerna publish from-package --force-publish -y | ||
# Publish to Registry | ||
yarn dx profile init --name $DX_PROFILE --template-url "$DX_PROFILE_URL" | ||
# Publish to WNS | ||
yarn wire profile init --name $WIRE_PROFILE --template-url "$WIRE_PROFILE_URL" | ||
export PKG_CHANNEL="@beta" | ||
scripts/deploy_apps_to_registry.sh | ||
scripts/deploy_apps_to_wns.sh | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.npm_token}} | ||
DX_REGISTRY_USER_KEY: ${{secrets.registry_user_key}} | ||
DX_REGISTRY_BOND_ID: ${{secrets.registry_bond_id}} | ||
DX_PROFILE_URL: ${{secrets.dx_profile_url}} | ||
DX_PROFILE: ci | ||
WIRE_WNS_USER_KEY: ${{secrets.wns_user_key}} | ||
WIRE_WNS_BOND_ID: ${{secrets.wns_bond_id}} | ||
WIRE_PROFILE_URL: ${{secrets.wire_profile_url}} | ||
WIRE_PROFILE: ci |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ jobs: | |
with: | ||
node-version: 12 | ||
registry-url: https://registry.npmjs.org/ | ||
- name: Build and REGISTRY publish | ||
- name: Build and WNS publish | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "DXOS" | ||
|
@@ -33,13 +33,13 @@ jobs: | |
npm whoami | ||
yarn lerna publish -y prerelease --dist-tag="alpha" --force-publish | ||
# Publish to REGISTRY | ||
yarn dx profile init --name $DX_PROFILE --template-url "$DX_PROFILE_URL" | ||
# Publish to WNS | ||
yarn wire profile init --name $WIRE_PROFILE --template-url "$WIRE_PROFILE_URL" | ||
export PKG_CHANNEL="@alpha" | ||
scripts/deploy_apps_to_registry.sh | ||
scripts/deploy_apps_to_wns.sh | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.npm_token}} | ||
DX_REGISTRY_USER_KEY: ${{secrets.registry_user_key}} | ||
DX_REGISTRY_BOND_ID: ${{secrets.registry_bond_id}} | ||
DX_PROFILE_URL: ${{secrets.dx_profile_url}} | ||
DX_PROFILE: ci | ||
WIRE_WNS_USER_KEY: ${{secrets.wns_user_key}} | ||
WIRE_WNS_BOND_ID: ${{secrets.wns_bond_id}} | ||
WIRE_PROFILE_URL: ${{secrets.wire_profile_url}} | ||
WIRE_PROFILE: ci |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ jobs: | |
with: | ||
node-version: 12 | ||
registry-url: https://registry.npmjs.org/ | ||
- name: Build and REGISTRY publish | ||
- name: Build and WNS publish | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "DXOS" | ||
|
@@ -39,12 +39,12 @@ jobs: | |
git push --tags -f | ||
yarn lerna publish from-package --force-publish -y | ||
# Publish to REGISTRY | ||
yarn dx profile init --name $DX_PROFILE --template-url "$DX_PROFILE_URL" | ||
scripts/deploy_apps_to_registry.sh | ||
# Publish to WNS | ||
yarn wire profile init --name $WIRE_PROFILE --template-url "$WIRE_PROFILE_URL" | ||
scripts/deploy_apps_to_wns.sh | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.npm_token}} | ||
DX_REGISTRY_USER_KEY: ${{secrets.registry_user_key}} | ||
DX_REGISTRY_BOND_ID: ${{secrets.registry_bond_id}} | ||
DX_PROFILE_URL: ${{secrets.dx_profile_url}} | ||
DX_PROFILE: ci | ||
WIRE_WNS_USER_KEY: ${{secrets.wns_user_key}} | ||
WIRE_WNS_BOND_ID: ${{secrets.wns_bond_id}} | ||
WIRE_PROFILE_URL: ${{secrets.wire_profile_url}} | ||
WIRE_PROFILE: ci |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
#!/bin/sh | ||
|
||
# Ensure ~/.dxos/config.yml is set-up correctly. | ||
# Ensure ~/.wireline/config.yml is set-up correctly. | ||
|
||
set -x | ||
|
||
yarn dx app build | ||
yarn dx app publish | ||
yarn dx app register | ||
yarn wire app build | ||
yarn wire app publish | ||
yarn wire app register | ||
|
||
yarn dx app query --name DXOS.io/teamwork | ||
yarn wire app query --name DXOS.io/teamwork | ||
|
||
yarn run dx app serve --app dxn:app:dxos.org/teamwork --path /teamwork --port 8080 | ||
yarn run wire app serve --app wrn:app:DXOS.io/teamwork --path /teamwork --port 8080 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.