fix: simplify to test #2266
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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) }}' |