Add PR release to mithril.js
This commit is contained in:
parent
9906e23118
commit
0d9051de96
3 changed files with 112 additions and 0 deletions
31
.github/workflows/rollback.yml
vendored
Normal file
31
.github/workflows/rollback.yml
vendored
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
name: rollback
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency: prr:deploy
|
||||
|
||||
jobs:
|
||||
pr:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [16.x]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
ref: 'next'
|
||||
fetch-depth: 0
|
||||
- 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 rollback --verbose --target main --source next --verbose --ignore 'package*' --ignore changelog.md
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue