chore: amend version freezes on release-please PRs

This commit is contained in:
Randolf Jung 2022-05-31 14:41:22 +02:00
parent 92110151d9
commit 9c852cedbe
2 changed files with 27 additions and 0 deletions

View File

@ -1,3 +1,4 @@
releaseType: node releaseType: node
primaryBranch: main primaryBranch: main
handleGHRelease: true
manifest: true manifest: true

26
.github/workflows/pre-release.yml vendored Normal file
View File

@ -0,0 +1,26 @@
name: Publish
on:
push:
branches:
- release-please-*
jobs:
pre-publish:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: npm install
- name: Build
run: |
node utils/generate_version_file.js
IS_PRE_RELEASE=1 npm run doc
- name: Commit and push
run: |
git add -A
git commit --amend --no-edit
git push -f