Show JPEG/PNG images on map when role overview is set, regardless of … #530
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 | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 'lts/*' | |
- uses: actions/checkout@v3 | |
- run: npm install | |
- run: npm run build -- --pathPrefix="/stac-browser" --historyMode=hash | |
- uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: dist | |
exclude_assets: 'report.html' | |
user_name: 'STAC Browser CI' | |
user_email: [email protected] |