Skip to content

Commit

Permalink
Allow workflow dispatch for release chores
Browse files Browse the repository at this point in the history
  • Loading branch information
illright committed Mar 1, 2024
1 parent 2025920 commit e4afd6c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Post-release chores
on:
release:
types: [published]
workflow_dispatch:

jobs:
deploy-docs:
Expand All @@ -22,7 +23,7 @@ jobs:
- name: Set up Node 20 📦
uses: actions/setup-node@v4
with:
node-version: '20'
node-version: "20"
cache: pnpm

- name: Build docs 🔧
Expand Down Expand Up @@ -54,8 +55,8 @@ jobs:
- name: Set up Node 20 📦
uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'
node-version: "20"
registry-url: "https://registry.npmjs.org"
cache: pnpm

- name: Build bundles 🔧
Expand Down

0 comments on commit e4afd6c

Please sign in to comment.