Skip to content

✨ add woodpecker plugin projects #12

✨ add woodpecker plugin projects

✨ add woodpecker plugin projects #12

Workflow file for this run

name: ci
on:
push:
branches:
- main
workflow_dispatch:
jobs:
gh-pages:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Setup NodeJS 💚
uses: actions/setup-node@v3
with:
node-version: 16
cache: npm
- name: Install Deps 🧩
run: npm install
- name: Build 📦
run: npm run build
- name: Deploy 🚀
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: ./dist
commit_message: ":rocket: ${{ github.event.head_commit.message }}"