Skip to content

Update Github actions #24

Update Github actions

Update Github actions #24

Workflow file for this run

name: Update the static files
on:
workflow_dispatch:
push:
branches: [main]
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '23.x'
- name: Installing my packages
run: npm ci
- name: Build my App
run: npm run build && touch ./out/.nojekyll
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: out