Skip to content

Refactor RSS feed to include custom media content for images #35

Refactor RSS feed to include custom media content for images

Refactor RSS feed to include custom media content for images #35

Workflow file for this run

name: Build and Publish Web Site
on:
push:
branches:
- master
- main
jobs:
build:
name: Build and Push
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
name: Checkout
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: '9.14.4'
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install
- name: Build
run: pnpm run build
- name: Redirect 404 to Index for SPA
run: cp dist/index.html dist/404.html
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
cname: blog.angor.io