Skip to content

Add remaining radar blip descriptions #8

Add remaining radar blip descriptions

Add remaining radar blip descriptions #8

Workflow file for this run

# Build and deploy pages to the gh-pages branch
name: Build & Deploy
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
env:
PUBLIC_URL: ${{ vars.PUBLIC_URL }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: npm
cache-dependency-path: package-lock.json
- name: Build static site
run: |
npm ci
npm run build
- name: Upload build folder as pages artifact
uses: actions/upload-pages-artifact@v1
if: github.ref == 'refs/heads/main'
with:
path: dist${{ vars.PUBLIC_URL }}
deploy:
if: github.ref == 'refs/heads/main'
needs: build
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2