Refactor build steps

pull/1331/head
Kamran Ahmed 4 years ago committed by GitHub
parent ab15d91614
commit cdb9201b2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 13
      .github/workflows/deploy.yml

@ -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

Loading…
Cancel
Save