Skip to content

Merge pull request #457 from geoql/dependabot/npm_and_yarn/example/ty… #326

Merge pull request #457 from geoql/dependabot/npm_and_yarn/example/ty…

Merge pull request #457 from geoql/dependabot/npm_and_yarn/example/ty… #326

Workflow file for this run

name: 'Deploy to Pages'
on:
push:
branches:
- main
jobs:
deploy-demo:
runs-on: ubuntu-latest
defaults:
run:
working-directory: './example/'
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup node env 📦
uses: actions/setup-node@v4
with:
node-version: 'current'
check-latest: true
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- name: Install dependencies 🚀
run: npm ci --prefer-offline --no-audit --omit=optional
- name: Run build 🏁
run: npm run build
env:
VITE_WEATHER_API_KEY: ${{ secrets.WEATHER_API_KEY }}
- name: Deploy to GitHub Pages 🚀
uses: peaceiris/actions-gh-pages@v3.9.3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./example/dist