Skip to content

Commit

Permalink
Merge pull request #106 from Cerebellum-Network/hotfix/build-and-link
Browse files Browse the repository at this point in the history
Hotfix/build and link
  • Loading branch information
MRamanenkau authored Mar 8, 2024
2 parents 8b7d0da + 16c8321 commit ece2c53
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
uses: Cerebellum-Network/reusable-workflows/.github/workflows/[email protected]
with:
runs-on: '["self-hosted", "cere-network-large"]'
build_container: 'node:14-buster'
build_container: 'node:20-buster'
deploy_container: 'ubuntu:20.04'
install_packages_command: 'yarn install'
build_command: 'yarn build'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
uses: Cerebellum-Network/reusable-workflows/.github/workflows/[email protected]
with:
runs-on: '["self-hosted", "cere-network-large"]'
build_container: 'node:14-buster'
build_container: 'node:20-buster'
deploy_container: 'ubuntu:20.04'
install_packages_command: 'yarn install'
build_command: 'yarn build'
Expand Down
4 changes: 2 additions & 2 deletions packages/apps-config/src/endpoints/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import type { TFunction, TOptions } from '../types.js';
import type { LinkOption } from './types.js';

import { createCustom, createDev, createOwn } from './development.js';
import { prodChains, prodRelayKusama, prodRelayPolkadot } from './production.js';
import { testChains, testRelayRococo, testRelayWestend } from './testing.js';
import { prodChains } from './production.js';
import { testChains } from './testing.js';
import { expandEndpoints } from './util.js';

export { CUSTOM_ENDPOINT_KEY } from './development.js';
Expand Down
1 change: 1 addition & 0 deletions packages/apps/public/locales/en/apps-routing.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"nav.files": "Files (IPFS)",
"nav.gilt": "Gilt",
"nav.github": "GitHub",
"nav.home": "Community Portal",
"nav.js": "JavaScript",
"nav.membership": "Membership",
"nav.nfts": "NFTs",
Expand Down
1 change: 1 addition & 0 deletions packages/apps/public/locales/en/apps.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"You are not connected to a node. Ensure that your node is running and that the Websocket endpoint is reachable.": "You are not connected to a node. Ensure that your node is running and that the Websocket endpoint is reachable.",
"custom endpoint": "custom endpoint",
"nav.github": "nav.github",
"nav.home": "nav.home",
"nav.wiki": "nav.wiki",
"transfer received": "transfer received",
"update on #{{index}}": "update on #{{index}}",
Expand Down
13 changes: 1 addition & 12 deletions packages/apps/src/Menu/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,7 @@ interface Props {

function createExternals (t: (key: string, optionsOrText?: string | { replace: Record<string, unknown> }, options?: { ns: string }) => string): ItemRoute[] {
return [
{
href: 'https://github.com/polkadot-js/apps',
icon: 'code-branch',
name: 'github',
text: t('nav.github', 'GitHub', { ns: 'apps-routing' })
},
{
href: 'https://wiki.polkadot.network',
icon: 'book',
name: 'wiki',
text: t('nav.wiki', 'Wiki', { ns: 'apps-routing' })
}
{ href: 'https://portal.cere.network', icon: 'book', name: 'Home', text: t('nav.home', 'Community Portal', { ns: 'apps-routing' }) }
];
}

Expand Down

0 comments on commit ece2c53

Please sign in to comment.