add sei support #300
Workflow file for this run
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
name: Portal Bridge [Preview] | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
cctp: | |
name: "Build USDC Bridge (CCTP)" | |
runs-on: "ubuntu-latest" | |
concurrency: | |
group: ${{ github.ref }}-cctp-preview | |
cancel-in-progress: true | |
environment: Cloudflare-Preview | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
repository: xlabs/usdc-bridge | |
ref: develop | |
- name: Set up Node environment | |
uses: actions/setup-node@v3 | |
with: | |
node-version: v18.17.1 | |
- name: Install dependencies | |
run: npm ci | |
- name: Set Version | |
run: | | |
echo "_BRANCH_NAME_SHA=$(echo ${{ github.event.pull_request.head.ref }} | sha256sum | cut -c -10)" >> "${GITHUB_ENV}" | |
- name: Build | |
env: | |
DEPLOY: "true" | |
NEXT_PUBLIC_NETWORK: ${{ vars.REACT_APP_CLUSTER }} | |
NEXT_PUBLIC_BASE_PATH: "/${{ env._BRANCH_NAME_SHA }}/usdc-bridge" | |
run: npm run build | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: preview-stable-bridge-build | |
path: out | |
docs: | |
name: "Build Portal Bridge Documentation" | |
runs-on: "ubuntu-latest" | |
concurrency: | |
group: ${{ github.ref }}-portal-docs-preview | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Node environment | |
uses: actions/setup-node@v3 | |
with: | |
node-version: v18.17.1 | |
- name: Install dependencies | |
run: | | |
pushd docs | |
npm ci | |
- name: Set Version | |
run: | | |
echo "_BRANCH_NAME_SHA=$(echo ${{ github.event.pull_request.head.ref }} | sha256sum | cut -c -10)" >> "${GITHUB_ENV}" | |
- name: Build | |
env: | |
PUBLIC_URL: "/${{ env._BRANCH_NAME_SHA }}/docs" | |
run: | | |
pushd docs | |
npm run build | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: docs-preview-build | |
path: docs/build | |
portal: | |
name: "Build Portal Bridge" | |
runs-on: xlabs-large-runner | |
concurrency: | |
group: ${{ github.ref }}-portal-preview | |
cancel-in-progress: true | |
environment: Cloudflare-Preview | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Node environment | |
uses: actions/setup-node@v3 | |
with: | |
node-version: v18.17.1 | |
- name: Setup Git | |
run: | | |
git config user.name "xLabs CI" | |
git config user.email "devops@xlabs.xyz" | |
- name: Install dependencies | |
run: npm install | |
- name: Set Version | |
run: | | |
npm version $(node -p -e "require('./package.json').version")-P$(echo ${{ github.sha }} | cut -c -10) | |
echo "_PKG_VERSION=$(node -p -e "require('./package.json').version")" >> "${GITHUB_ENV}" | |
echo "_BRANCH_NAME_SHA=$(echo ${{ github.event.pull_request.head.ref }} | sha256sum | cut -c -10)" >> "${GITHUB_ENV}" | |
- name: Build | |
env: | |
PUBLIC_URL: "/${{ env._BRANCH_NAME_SHA }}" | |
NODE_OPTIONS: "--max-old-space-size=10240" | |
REACT_APP_CLUSTER: ${{ vars.REACT_APP_CLUSTER }} | |
REACT_APP_SOLANA_API_URL: ${{ vars.REACT_APP_SOLANA_API_URL }} | |
REACT_APP_COVALENT_API_KEY: ${{ secrets.REACT_APP_COVALENT_API_KEY }} | |
REACT_APP_WALLET_CONNECT_PROJECT_ID: ${{ secrets.REACT_APP_WALLET_CONNECT_PROJECT_ID }} | |
run: | | |
pushd public | |
npm run set-version | |
popd | |
echo 'REACT_APP_VERSION=$npm_package_version' > .env | |
npm run build | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: preview-build | |
path: build | |
- name: Deploy metadata | |
run: | | |
mkdir deploy-metadata | |
pushd deploy-metadata | |
echo ${_BRANCH_NAME_SHA} > .branch-sha | |
echo ${_PKG_VERSION} > .version | |
- name: Upload Deploy metadata | |
uses: actions/upload-artifact@v3 | |
with: | |
name: preview-deploy-metadata | |
path: deploy-metadata | |
publish: | |
name: "Publish" | |
needs: | |
- portal | |
- docs | |
- cctp | |
runs-on: "ubuntu-latest" | |
concurrency: | |
group: ${{ github.ref }}-publish-preview | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Download Artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: preview-build | |
- name: Download Artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: docs-preview-build | |
path: docs | |
- name: Download Artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: preview-stable-bridge-build | |
path: usdc-bridge | |
- name: Set up GitHub NPM registry | |
uses: actions/setup-node@v3 | |
with: | |
node-version: v18.17.1 | |
registry-url: https://npm.pkg.github.com | |
- name: Publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: npm publish | |
deploy: | |
name: "Deploy Preview" | |
needs: publish | |
runs-on: "ubuntu-latest" | |
concurrency: | |
group: ${{ github.ref }}-deploy-preview | |
cancel-in-progress: true | |
permissions: | |
contents: write | |
environment: Cloudflare-Preview | |
steps: | |
- name: Checkout preview branch | |
uses: actions/checkout@v3 | |
with: | |
ref: preview | |
- name: Setup Git | |
run: | | |
git config user.name "xLabs CI" | |
git config user.email "devops@xlabs.xyz" | |
- name: Download Artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: preview-deploy-metadata | |
path: deploy-metadata | |
- name: Set deploy metadata | |
run: | | |
echo "_PKG_VERSION=$(cat deploy-metadata/.version)" >> ${GITHUB_ENV} | |
echo "_BRANCH_NAME_SHA=$(cat deploy-metadata/.branch-sha)" >> ${GITHUB_ENV} | |
- name: Trigger a preview Deploy | |
run: | | |
sleep 30s | |
mkdir -p preview/${{ env._BRANCH_NAME_SHA }} | |
pushd preview/${{ env._BRANCH_NAME_SHA }} | |
[[ ! -f .latest ]] && touch .latest | |
[[ ! -f .artifacts ]] && touch .artifacts | |
cat .latest >> .artifacts | |
echo ${{ env._PKG_VERSION }} > .latest | |
git add .artifacts .latest | |
git commit -m"Update preview artifacts ${{ env._PKG_VERSION }}" | |
git push | |
echo "The preview URL is: ${{ vars.PREVIEW_ROOT_URL }}/${{ env._BRANCH_NAME_SHA }}/" >> ${GITHUB_STEP_SUMMARY} |