chore: add v17.7.3 patch workflow

This commit is contained in:
pavlov346346-source 2026-09-09 11:58:00 +03:00
parent ea6afc6de0
commit 2b10d703e0

32
.github/workflows/v1773-patch.yml vendored Normal file
View File

@ -0,0 +1,32 @@
name: Caterium v17.7.3 patch
on:
workflow_dispatch:
push:
branches: [feat/v17-7-3-clients-server-read]
paths:
- ops/v1773-patch.mjs
- .github/workflows/v1773-patch.yml
permissions:
contents: write
jobs:
patch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: feat/v17-7-3-clients-server-read
- uses: actions/setup-node@v4
with:
node-version: 22
- run: node ops/v1773-patch.mjs
- run: npm install
- run: npm run check:deploy
- run: npx playwright install --with-deps chromium
- run: npm run test:e2e
- name: Commit generated v17.7.3 files
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add package.json package-lock.json public docs ops/sql tests
git commit -m "Caterium v17.7.3 — clients server read" || exit 0
git push