name: Caterium v17.7.1 data layer adoption on: push: branches: - main paths: - '.github/workflows/release-v17-7-1.yml' permissions: contents: write jobs: release: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: node-version: '22' - name: Apply patch run: python ops/release_v1771.py - name: Install dependencies run: npm install - name: Validate release run: npm run check:deploy - name: Commit release run: | rm -f .github/workflows/release-v17-7-1.yml ops/release_v1771.py git config user.name "github-actions[bot]" git config user.email "41898282+github-actions[bot]@users.noreply.github.com" git add -A git commit -m "Caterium v17.7.1 - data layer adoption" git push