File tree Expand file tree Collapse file tree 2 files changed +16
-6
lines changed Expand file tree Collapse file tree 2 files changed +16
-6
lines changed Original file line number Diff line number Diff line change 99 name : Deploy
1010 runs-on : ubuntu-latest
1111
12+ permissions :
13+ pages : write
14+ id-token : write
15+
16+ # Deploy to the github-pages environment
17+ environment :
18+ name : github-pages
19+ url : ${{ steps.deployment.outputs.page_url }}
20+
1221 steps :
1322 - uses : actions/checkout@v2
1423 - name : Use Node.js 12
1726 node-version : 12
1827 - run : npm ci
1928 - run : npm run build
20- - uses : peaceiris/actions-gh-pages@v3
21- with :
22- github_token : ${{ secrets.GITHUB_TOKEN }}
23- publish_dir : build
24- publish_branch : master
29+ - name : Create gh-pages artifact
30+ uses : actions/upload-pages-artifact@v1
31+ path : build
32+ - name : Deploy to GitHub Pages
33+ id : deployment
34+ uses : actions/deploy-pages@v1
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ const features: Feature[] = [
2626 < >
2727 Static types can ease the mental burden of writing programs, by automatically tracking information the
2828 programmer would otherwise have to track mentally in some fashion. Types serve as documentation for
29- yourself and other programmers and provide a ‘gradient’ that tells you what terms make sense to write.
29+ yourself and other programmers and provide a check that tells you what terms make sense to write.
3030 </ >
3131 ) ,
3232 } ,
You can’t perform that action at this time.
0 commit comments