38 lines
911 B
YAML
38 lines
911 B
YAML
name: pr
|
|
|
|
on:
|
|
push:
|
|
branches: [ next ]
|
|
|
|
workflow_dispatch:
|
|
|
|
concurrency: prr:pre-release
|
|
|
|
jobs:
|
|
pr:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [16.x]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
cache: 'npm'
|
|
- run: npm ci
|
|
- run: npm run build --if-present
|
|
- run: npx pr-release pr --verbose --target main --source next --compact --verbose
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
# The following will publish a prerelease to npm
|
|
- run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > ~/.npmrc
|
|
name: Setup NPM Auth
|
|
env:
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
- run: npx pr-release infer-prerelease --preid=next --verbose --publish
|
|
name: Publish
|