We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 256188e commit fd3ae76Copy full SHA for fd3ae76
1 file changed
.github/workflows/release.yml
@@ -16,10 +16,17 @@ jobs:
16
with:
17
fetch-depth: 0
18
19
+ - uses: pnpm/action-setup@v4
20
- uses: actions/setup-node@v4
21
22
node-version: lts/*
23
+ cache: 'pnpm'
24
- - run: npx changelogithub
25
+ - run: pnpm install
26
+ - run: pnpm run build
27
+
28
+ # Upload the userscript so Greasy Fork can auto-update it via webhook
29
+ # See: https://greasyfork.org/en/users/webhook-info
30
+ - run: npx changelogithub --assets dist/*.user.js
31
env:
32
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
0 commit comments