GatbyJSで作成したサイトをGitHub ActionsでビルドとGitHub Pagesへのデプロイして公開してみたのですが、
画像やグラフがうまく表示されなかったり表示されなかったりします。
Gatsby developで表示したサイトだと下記の画像のように正しく表示されます。
GitHub Actionsで使用したYMLファイルは以下です。
main.yml
1# This is a basic workflow to help you get started with Actions 2 3name: Deploy 4 5# Controls when the action will run. Triggers the workflow on push or pull request 6# events but only for the master branch 7on: 8 push: 9 branches: 10 - master 11 12# A workflow run is made up of one or more jobs that can run sequentially or in parallel 13jobs: 14 build-deploy: 15 runs-on: ubuntu-latest 16 steps: 17 - uses: actions/checkout@v2 18 19 - name: setup node 20 uses: actions/setup-node@v2.1.0 21 with: 22 node-version: '12.x' 23 24 - name: Cache dependencies 25 uses: actions/cache@v1 26 with: 27 path: ~/.cache/yarn 28 key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} 29 restore-keys: | 30 ${{ runner.os }}-yarn- 31 - name: install 32 run: yarn install --frozen-lockfile 33 34 - name: build 35 run: yarn build 36 env: 37 GITHUB_API_TOKEN: ${{secrets.GITHUBAPI_TOKEN}} 38 39 - name: deploy 40 uses: peaceiris/actions-gh-pages@v3 41 with: 42 github_token: ${{secrets.GITHUB_TOKEN}} 43 publish_dir: ./public
どうすればサイトを正しく表示することができるのでしょうか。
あなたの回答
tips
プレビュー