Skip to content

feat: add node registration, move video in guide #49

feat: add node registration, move video in guide

feat: add node registration, move video in guide #49

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- with-logic
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "18"
cache: "npm"
- name: Install dependencies
run: npm ci --force
- name: Build
env:
NEXT_PUBLIC_PROXY_URL: "https://credentials.atoma.network"
NEXT_PUBLIC_PROXY_WALLET: "0xec2c53f7c706e37518afedb71bbe46021fb5b1ab1c2a56754541120cac8d7a9e"
NEXT_PUBLIC_USDC_TYPE: "0xa1ec7fc00a6f40db9693ad1415d0c193ad3906494428cf252621037bd7117e29::usdc::USDC"
NEXT_PUBLIC_SUI_RPC_URL: "https://fullnode.testnet.sui.io:443"
NEXT_PUBLIC_PROVER_URL: "https://prover.atoma.network"
NEXT_PUBLIC_GOOGLE_OAUTH_SCOPE: "openid email profile"
NEXT_PUBLIC_GOOGLE_CLIENT_ID: "135471414073-41r9t89rejgfr6bc9aptjpm75o4oedk2.apps.googleusercontent.com"
NEXT_PUBLIC_GOOGLE_REDIRECT_URI: "https://cloud.atoma.network/auth/google"
NEXT_PUBLIC_ENABLE_ZK_LOGIN_GOOGLE: "false"
run: npm run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./out
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4