Skip to content

Use official ManhuaFast icon from keiyoushi source #2

Use official ManhuaFast icon from keiyoushi source

Use official ManhuaFast icon from keiyoushi source #2

name: Bundle and Deploy
on:
push:
branches:
- "*.*/stable"
- "*.*/testing"
permissions:
contents: write
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
bundle-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Branch
uses: actions/checkout@v4
- name: Setup Node.js Environment
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install Dependencies
run: npm ci
- name: Bundle Extensions
run: npm run bundle
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: bundles
destination_dir: ${{ github.ref_name }}