next -> main

This commit is contained in:
Claudia Meadows 2024-09-24 20:59:33 -07:00
parent 33e1562fc1
commit abd7f86888
No known key found for this signature in database
GPG key ID: C86B594396786760
9 changed files with 15 additions and 17 deletions

View file

@ -15,13 +15,13 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
ref: next
ref: main
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: npm run build
- run: npx pr-release merge --target release --source next --commit --force --clean --changelog ./docs/recent-changes.md --compact --minimize-semver-change
- run: npx pr-release merge --target release --source main --commit --force --clean --changelog ./docs/recent-changes.md --compact --minimize-semver-change
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}