Skip to content

attempt to fix failing deploy #43

attempt to fix failing deploy

attempt to fix failing deploy #43

Workflow file for this run

name: webapp
on:
push:
branches:
- main
- 'feature/**'
concurrency:
group: 'pages'
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
cache-dependency-path: package-lock.json
- name: Setup Pages
uses: actions/configure-pages@v4
- run: npm ci
- run: npm run export
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./out
deploy:
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
permissions:
pages: write
id-token: write
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4