Skip to content

Updated plugin stats automatically on 2025-01-24 (#47) #30

Updated plugin stats automatically on 2025-01-24 (#47)

Updated plugin stats automatically on 2025-01-24 (#47) #30

Workflow file for this run

name: Deploy to Github Pages
on:
workflow_dispatch:
push:
branches: [main]
permissions: write-all
jobs:
build:
name: Deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- run: npm ci
- name: Run Deploy
run: |
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
npm run deploy -- -u "github-actions-bot <support+actions@github.com>"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}