web3.ts: change infura provider to ethereum #7
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: Build and Deploy | |
on: | |
push: | |
branches: | |
- deploy | |
jobs: | |
build-and-deploy: | |
concurrency: ci-${{ github.ref }} # Allows to make multiple deployments in quick succession. | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
- name: Install and Build 🔧 | |
run: | | |
npm ci | |
npm run build-select-network --chain=ethereum | |
npm run build-webpack | |
touch dist/.nojekyll | |
echo earthtiles.org > dist/CNAME | |
- name: Deploy 🚀 | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages # The branch deployed to. | |
folder: dist # The folder to deploy. |