computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
417 B
21 lines
417 B
4 years ago
|
name: Deployment to GitHub Pages
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ master ]
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: actions/setup-node@v1
|
||
|
with:
|
||
|
node-version: 12
|
||
|
- run: npm install -g yarn
|
||
|
- run: |
|
||
|
yarn install
|
||
|
yarn meta
|
||
|
yarn build
|
||
|
env:
|
||
|
ROADMAP_GH_SECRET: ${{ secrets.GA_SECRET }}
|
||
|
- run: npm run deploy
|