Skip to content

chore: release septic-config 1.29.1 (#865) #382

chore: release septic-config 1.29.1 (#865)

chore: release septic-config 1.29.1 (#865) #382

name: 🎉 Release Please
on:
push:
branches:
- main
permissions:
contents: write
pull-requests: write
jobs:
release_please:
name: 🔖 Release Please
runs-on: ubuntu-latest
steps:
- name: Create Release
id: release
uses: googleapis/release-please-action@v4
with:
config-file: .github/release-please-config.json
manifest-file: .github/.release-please-manifest.json
outputs:
extension_release_created: ${{ steps.release.outputs['septic-config--release_created'] }}
lib_release_created: ${{ steps.release.outputs['@equinor/septic-config-lib--release_created'] }}
publish_extension:
name: "Publish Extension"
if: ${{ needs.release_please.outputs.extension_release_created }}
needs: [release_please]
uses: ./.github/workflows/publish-extension.yml
publish_lib:
name: "Publish Lib"
if: ${{ needs.release_please.outputs.lib_release_created }}
needs: [release_please]
uses: ./.github/workflows/publish-lib.yml