Check if 'tdex.v2.WalletService' when calling Reflection #356
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: Github Pages | |
on: | |
push: | |
branches: [v1] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "16" | |
- run: yarn install --frozen-lockfile | |
- name: Patch the window.USE_PROXY variable in index.html | |
run: sed -i 's#__USE_PROXY__#false#g' ./public/index.html | |
- run: yarn build | |
env: | |
PUBLIC_URL: https://tdex-network.github.io/tdex-dashboard | |
- name: Deploy to GitHub Pages | |
if: success() | |
uses: crazy-max/ghaction-github-pages@v3 | |
with: | |
target_branch: gh-pages | |
build_dir: build | |
#fqdn: dashboard.tdex.network | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |