ci: test #6
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: Test Release Please | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - test/release-please-debug | |
| permissions: | |
| contents: write | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| debug-release-please: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Test release-please dry run | |
| uses: googleapis/release-please-action@v4 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| target-branch: test/release-please-debug | |
| dry-run: true | |
| debug: true | |
| - name: Test release-please with debug output | |
| if: always() | |
| run: | | |
| echo "=== Release-Please Debug Output ===" | |
| echo "Check the logs above for detailed error information" |