-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (35 loc) · 1.29 KB
/
generate.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Generate pages
on: [ push, pull_request ]
jobs:
deploy:
name: Generate pages
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- run: corepack enable
- name: Setup Node.js
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: '20'
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Build pages
run: yarn build
- name: Generate pages
run: yarn generate
- name: Upload artifacts
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
continue-on-error: true
with:
name: homepage-build-${{ github.run_number }}
path: ./.output/public
- name: Deploy to GitHub Pages
if: ${{ github.repository == 'Siroshun09/homepage' && github.ref == 'refs/heads/master' }}
uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4.0.0
with:
external_repository: Siroshun09/siroshun09.github.io
personal_token: ${{ secrets.TOKEN_FOR_DEPLOYING_TO_GH_PAGES }}
publish_dir: ./.output/public
allow_empty_commit: true