Skip to content

Optimize SegmentedTabs #521

Optimize SegmentedTabs

Optimize SegmentedTabs #521

Workflow file for this run

name: Deploy Development
on:
pull_request:
workflow_dispatch:
jobs:
deploy-package:
name: Deploy Package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3
with:
repository: darwinia-network/devops
path: .github
- uses: ./.github/actions/smart-vercel
name: Deploy Helix (mainnet)
with:
node_version: 20
vercel_token: ${{ secrets.VERCEL_TOKEN }}
vercel_group: itering
preview_output: true
alias_domain: "helix-dev-mainnet"
project_name: "helix-apps"
script_install: npm i
script_build: npm run build:mainnet
dist_path: dist
enable_notify_comment: true
enable_notify_slack: true
slack_channel: helix-ui
slack_webhook: ${{ secrets.SLACK_INCOMING_WEBHOOK_URL }}
- uses: ./.github/actions/smart-vercel
name: Deploy Helix (testnet)
with:
node_version: 20
vercel_token: ${{ secrets.VERCEL_TOKEN }}
vercel_group: itering
preview_output: true
alias_domain: "helix-dev-testnet"
project_name: "helix-apps-test"
script_install: npm i
script_build: npm run build:testnet
dist_path: dist
enable_notify_comment: true
enable_notify_slack: true
slack_channel: helix-ui
slack_webhook: ${{ secrets.SLACK_INCOMING_WEBHOOK_URL }}