Update RPC and REST URLs for Initia Testnet #997
This file contains hidden or 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: Deploy | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: "18" | |
| registry-url: "https://registry.npmjs.org" | |
| - run: npm install --global yarn | |
| - name: Get yarn cache directory path | |
| id: yarn-cache-dir-path | |
| run: echo "::set-output name=dir::$(yarn config get cacheFolder)" | |
| - name: Restore yarn cache | |
| uses: actions/cache@v4 | |
| id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) | |
| with: | |
| path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
| key: yarn-cache-folder-${{ hashFiles('**/yarn.lock', '.yarnrc.yml') }} | |
| restore-keys: | | |
| yarn-cache-folder- | |
| - run: yarn install --immutable | |
| - run: yarn build:server | |
| - run: yarn bundle:server | |
| - run: yarn bundle:zip | |
| - run: curl -fsSL https://get.pulumi.com | sh | |
| - run: pulumi login s3://pulumi-keplr-chain-registry-backend | |
| working-directory: ./pulumi | |
| env: | |
| AWS_REGION: us-west-2 | |
| AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
| AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
| - run: pulumi stack select prod | |
| working-directory: ./pulumi | |
| env: | |
| AWS_REGION: us-west-2 | |
| AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
| AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
| - run: pulumi up -y | |
| working-directory: ./pulumi | |
| env: | |
| PULUMI_CONFIG_PASSPHRASE: ${{ secrets.PULUMI_CONFIG_PASSPHRASE }} | |
| AWS_REGION: us-west-2 | |
| AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
| AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
| # Disable temporarily | |
| # - run: yarn ts-node src/cms.ts | |
| # env: | |
| # WEBFLOW_TOKEN: ${{ secrets.WEBFLOW_TOKEN }} | |
| # WEBFLOW_COLLECTION_ID: ${{ secrets.WEBFLOW_COLLECTION_ID }} |