Skip to content

Release Please

Release Please #15

name: Release Please
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: write
pull-requests: write
packages: write
id-token: write
jobs:
release-please:
name: Open / update release PR
runs-on: ubuntu-latest
outputs:
release_created: ${{ steps.release.outputs.release_created }}
tag_name: ${{ steps.release.outputs.tag_name }}
version: ${{ steps.release.outputs.version }}
steps:
- uses: googleapis/release-please-action@v4
id: release
with:
config-file: release-please-config.json
manifest-file: .release-please-manifest.json
build-and-deploy:
name: Build images and open devnet PR
needs: release-please
if: needs.release-please.outputs.release_created == 'true'
uses: ./.github/workflows/docker-build-release.yml
with:
tag: ${{ needs.release-please.outputs.tag_name }}
secrets:
INFRA_GH_TOKEN: ${{ secrets.INFRA_GH_TOKEN }}