We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebc262e commit 72b38efCopy full SHA for 72b38ef
.github/workflows/gh-pages.yml
@@ -3,7 +3,7 @@ name: GitHub Pages
3
on:
4
push:
5
branches:
6
- - main
+ - master
7
pull_request:
8
9
jobs:
@@ -22,16 +22,16 @@ jobs:
22
23
- run: npm ci
24
- run: |
25
- echo 'module.exports.basePath = "/nextjs-template"' >> next.config.js
26
- - run: npm run testnet:build
+ echo 'module.exports.basePath = "/wallet-test-app"' >> next.config.js
+ - run: npm run build
27
env:
28
UPLOAD_SENTRY_SOURCEMAPS: false
29
30
- run: npm run export
31
32
- name: Deploy
33
uses: peaceiris/actions-gh-pages@v3
34
- if: ${{ github.ref == 'refs/heads/main' }}
+ if: ${{ github.ref == 'refs/heads/master' }}
35
with:
36
github_token: ${{ secrets.GITHUB_TOKEN }}
37
publish_dir: out
0 commit comments