Prompt a message to enter API key when tile request fails #189
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
on: | |
push: | |
branches: | |
- 'main' | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
jobs: | |
deploy: | |
environment: github-pages | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '22.x' | |
cache: 'pnpm' | |
- run: | | |
pnpm install --frozen-lockfile | |
npx nx build-storybook | |
env: | |
STORYBOOK_ION_API_TOKEN: ${{secrets.STORYBOOK_ION_API_TOKEN}} | |
STORYBOOK_GOOGLE_MAP_API_KEY: ${{secrets.STORYBOOK_GOOGLE_MAP_API_KEY}} | |
- uses: actions/upload-pages-artifact@v3 | |
with: | |
path: 'storybook/storybook-static' | |
- uses: actions/deploy-pages@v4 | |
with: | |
token: ${{ github.token }} |