33 lines
1005 B
YAML
33 lines
1005 B
YAML
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
|