Skip to content

fix: simplify to test #2266

fix: simplify to test

fix: simplify to test #2266

Workflow file for this run

name: CI/CD
on:
push:
branches:
- chore/test-release
workflow_dispatch:
permissions:
contents: read
id-token: write
jobs:
release-please:
if: ${{ github.event_name == 'push' && github.repository_owner == 'supabase' }}
runs-on: ubuntu-latest
name: "Run release-please"
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
contents: write # needed for github actions bot to write to repo
pull-requests: write
steps:
- uses: googleapis/release-please-action@v4
id: release
with:
target-branch: ${{ github.ref_name }}
config-file: release-please-config.json
manifest-file: .release-please-manifest.json
skip-github-release: true
skip-github-pull-request: false
- name: Print release-please outputs
run: echo '${{ toJson(steps.release.outputs) }}'