31 lines
924 B
YAML
31 lines
924 B
YAML
name: Caterium v17.7.2 patch
|
|
on:
|
|
push:
|
|
branches:
|
|
- feat/v17-7-2-clients-foundation
|
|
paths:
|
|
- .github/workflows/v1772-patch.yml
|
|
permissions:
|
|
contents: write
|
|
jobs:
|
|
patch:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
ref: feat/v17-7-2-clients-foundation
|
|
fetch-depth: 0
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 22
|
|
- run: node ops/v1772-patch.mjs
|
|
- run: node ops/v1772-fix-tests.mjs
|
|
- run: npm install
|
|
- run: npm run check:deploy
|
|
- run: |
|
|
git config user.name "github-actions[bot]"
|
|
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
|
git add public package.json package-lock.json docs tests
|
|
git commit -m "Prepare Caterium v17.7.2 clients foundation"
|
|
git push origin HEAD:feat/v17-7-2-clients-foundation
|