Skip to content

Merge pull request #216 from qgustavor/next #15

Merge pull request #216 from qgustavor/next

Merge pull request #216 from qgustavor/next #15

Workflow file for this run

name: merge
on:
push:
branches: [ main ]
workflow_dispatch:
concurrency: prr:deploy
jobs:
merge:
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
with:
ref: 'next'
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v4
with:
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
- run: npx pr-release merge --target main --source next --commit --force --clean --changelog --compact --minimize-semver-change
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
# The following will publish the release to npm
- run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > ~/.npmrc
name: Setup NPM Auth
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: npm publish --provenance
name: Publish