Skip to content

feat: update with upstream #4

feat: update with upstream

feat: update with upstream #4

Workflow file for this run

name: Deploy to GitHub Pages πŸš€
on:
push:
branches:
- main
workflow_dispatch:
# Allow this job to clone the repo and create a page deployment
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
name: Build πŸ—οΈ
runs-on: ubuntu-latest
environment:
name: Production
url: ${{ steps.deploy.outputs.page_url }}
steps:
- name: Checkout ⬇️
uses: actions/[email protected]
with:
show-progress: false
- name: Setup node environment βš™οΈ
uses: actions/[email protected]
with:
node-version: 20
cache: 'npm'
check-latest: true
- name: Install dependencies πŸ“¦
run: npm ci --no-audit
- name: Build πŸ—οΈ
env:
STAGING: 0
BASE_URL: /
SITE_URL: https://www.bpm2025seville.org/
run: npm run build
- name: Upload GitHub Pages artifact ⬆️
uses: actions/[email protected]
with:
path: dist
- name: Deploy to GitHub Pages πŸš€
id: deploy
uses: actions/[email protected]