Skip to content

2510.1 - feed generation system, reorganization, added tab support fo… #1

2510.1 - feed generation system, reorganization, added tab support fo…

2510.1 - feed generation system, reorganization, added tab support fo… #1

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [ main ]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
working-directory: ./assets/scripts
run: npm install
- name: Generate RSS feed and posts
working-directory: ./assets/scripts
run: node generate-feed.js
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: '.'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4