Update documentation for LegendWidget #1488
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy to Preview Channel | |
on: | |
pull_request: | |
# Optionally configure to run only for specific files. For example: | |
# paths: | |
# - "website/**" | |
jobs: | |
build_and_preview: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Hugo | |
uses: peaceiris/actions-hugo@v2 | |
with: | |
hugo-version: '0.78.2' | |
extended: true | |
- name: Hugo Build | |
working-directory: app | |
run: hugo --baseURL . | |
- name: Deploy to firebase | |
uses: FirebaseExtended/action-hosting-deploy@v0 | |
with: | |
repoToken: "${{ secrets.GITHUB_TOKEN }}" | |
firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT }}" | |
projectId: cartodb-fb-documentation | |
env: | |
FIREBASE_CLI_PREVIEWS: hostingchannels |