Skip to content

Commit 72b38ef

Browse files
committed
Fix
1 parent ebc262e commit 72b38ef

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/gh-pages.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: GitHub Pages
33
on:
44
push:
55
branches:
6-
- main
6+
- master
77
pull_request:
88

99
jobs:
@@ -22,16 +22,16 @@ jobs:
2222

2323
- run: npm ci
2424
- run: |
25-
echo 'module.exports.basePath = "/nextjs-template"' >> next.config.js
26-
- run: npm run testnet:build
25+
echo 'module.exports.basePath = "/wallet-test-app"' >> next.config.js
26+
- run: npm run build
2727
env:
2828
UPLOAD_SENTRY_SOURCEMAPS: false
2929

3030
- run: npm run export
3131

3232
- name: Deploy
3333
uses: peaceiris/actions-gh-pages@v3
34-
if: ${{ github.ref == 'refs/heads/main' }}
34+
if: ${{ github.ref == 'refs/heads/master' }}
3535
with:
3636
github_token: ${{ secrets.GITHUB_TOKEN }}
3737
publish_dir: out

0 commit comments

Comments
 (0)