Refactor build steps
This commit is contained in:
13
.github/workflows/deploy.yml
vendored
13
.github/workflows/deploy.yml
vendored
@ -10,11 +10,18 @@ jobs:
|
|||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: 12
|
node-version: 12
|
||||||
- run: npm install -g yarn
|
- name: Setup Environment
|
||||||
- run: |
|
run: |
|
||||||
|
npm install -g yarn
|
||||||
yarn install
|
yarn install
|
||||||
|
- name: Generate meta and builld
|
||||||
|
run: |
|
||||||
yarn meta
|
yarn meta
|
||||||
yarn build
|
yarn build
|
||||||
env:
|
env:
|
||||||
ROADMAP_GH_SECRET: ${{ secrets.GA_SECRET }}
|
ROADMAP_GH_SECRET: ${{ secrets.GA_SECRET }}
|
||||||
- run: npm run deploy
|
- name: Deploy to GitHub Pages
|
||||||
|
run: |
|
||||||
|
git config user.email "kamranahmed.se@gmail.com"
|
||||||
|
git config user.name "Kamran Ahmed"
|
||||||
|
npm run deploy
|
||||||
|
Reference in New Issue
Block a user