Skip to content

Merge pull request #44 from prefeitura-rio/staging #36

Merge pull request #44 from prefeitura-rio/staging

Merge pull request #44 from prefeitura-rio/staging #36

Workflow file for this run

name: Deployment - Production (viz.dados.rio)
on:
push:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
npm ci
- name: Build
run: |
npm run build
- name: Push to gh-pages branch
run: |
git config user.name github-actions
git config user.email [email protected]
git --work-tree dist add --all
git commit -m "Deploy"
git push origin HEAD:gh-pages --force