Skip to content

Custom delete for dbforpostgresql:Configuration to reset to the corre… #270

Custom delete for dbforpostgresql:Configuration to reset to the corre…

Custom delete for dbforpostgresql:Configuration to reset to the corre… #270

Workflow file for this run

name: release
on:
push:
tags:
- v*.*.*
jobs:
version:
uses: ./.github/workflows/version.yml
secrets: inherit
build_test:
uses: ./.github/workflows/build-test.yml
needs: version
secrets: inherit
with:
ref: ${{ github.ref }}
version: ${{ needs.version.outputs.version }}
# We cannot run OIDC tests in the release workflow because it's not a PR and we don't have a
# fixed tag or branch to serve as entity type, and we don't have Github environments
# configured. See
# https://learn.microsoft.com/en-us/azure/active-directory/workload-identities/workload-identity-federation-create-trust?pivots=identity-wif-apps-methods-azp#github-actions
oidc_arm_client_id: ""
upload_codecov: false
publish:
uses: ./.github/workflows/publish.yml
secrets: inherit
needs:
- build_test
- version
with:
ref: ${{ github.ref }}
version: ${{ needs.version.outputs.version }}
prerelease: ${{ contains(github.ref_name,'-') }}
dispatch_docs_build:
runs-on: ubuntu-latest
needs: publish
# not a prerelease
if: ${{ !contains(github.ref_name,'-') }}
steps:
- name: Install pulumictl
uses: jaxxstorm/[email protected]
with:
repo: pulumi/pulumictl
- name: Dispatch Event
run: pulumictl create docs-build pulumi-azure-native ${{ github.ref_name }}
env:
GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }}
name: dispatch_docs_build