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 f797ca0 commit 7e95c71Copy full SHA for 7e95c71
.circleci/config.yml
.github/workflows/deploy-gh-pages.yml
@@ -0,0 +1,31 @@
1
+name: Publish GH Pages
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
10
11
+jobs:
12
+ deploy:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v3
16
+ - uses: actions/setup-node@v3
17
+ with:
18
+ node-version: 16
19
+ cache: yarn
20
+ - name: Install dependencies
21
+ run: yarn install --immutable
22
+ - name: Build website
23
+ run: yarn build
24
+ - name: Deploy
25
+ if: github.event_name == "push"
26
+ uses: peaceiris/actions-gh-pages@v3
27
28
+ github_token: ${{ secrets.GITHUB_TOKEN }}
29
+ publish_dir: ./build
30
+ user_name: computerization-bot
31
+ user_email: computerizationbot@gmail.com
.github/workflows/linter.yaml .github/workflows/lint.yml.github/workflows/linter.yaml renamed to .github/workflows/lint.yml
0 commit comments