Process Release on main c3922106c1ca3fd00ee7b6bac4ddaff226db5684
#7
This file contains 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: Release | |
run-name: Process Release on ${{ github.event.workflow_run.head_branch }} `${{ github.event.workflow_run.head_sha }}` | |
on: | |
workflow_run: | |
workflows: ["Go"] | |
branches: [main] | |
types: | |
- completed | |
concurrency: | |
group: release-please-${{ github.ref }} | |
jobs: | |
release-please: | |
name: Release Please | |
runs-on: ubuntu-latest | |
if: github.event.workflow_run.conclusion == 'success' | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: google-github-actions/release-please-action@v4 | |
fail-release: | |
name: Fail Release | |
runs-on: ubuntu-latest | |
if: github.event.workflow_run.conclusion == 'failure' | |
steps: | |
- run: | | |
echo "::error ::Cannot release unless 'Go' workflow suceeds!" | |
exit 1 |