Skip to content

update old website to say 2025 things #26

update old website to say 2025 things

update old website to say 2025 things #26

Workflow file for this run

name: Website Deployment
on:
push:
branches:
- main
jobs:
deploy:
name: Deploy website
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- name: Install dependencies
run: npm ci
- name: Build website
run: npm run build
- name: Generate redirects
uses: dilanx/generate-redirects@v1
with:
destination-directory: ./dist
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
user_name: github-actions[bot]
user_email: 41898282+github-actions[bot]@users.noreply.github.com