Files
metabuilder/postgres/.github/workflows/release.yml
johndoe6345789 a51130a127 feat: Add external low-code and postgres repositories
- codegen: Low-code React app with JSON-driven component system
- packagerepo: Schema-driven package repository with backend/frontend
- postgres: Next.js app with Drizzle ORM and PostgreSQL

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-21 16:48:52 +00:00

43 lines
998 B
YAML

name: Release
on:
workflow_run:
workflows: [CI]
types:
- completed
branches:
- main
jobs:
release:
strategy:
matrix:
node-version: [22.x]
name: Create a new release
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Node.js environment
uses: ./.github/actions/setup-project
with:
node-version: ${{ matrix.node-version }}
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
run: npm audit signatures
- name: Release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}