diff --git a/.github/workflows/notify-docs-on-release.yml b/.github/workflows/notify-docs-on-release.yml index cb74eeec..d076296f 100644 --- a/.github/workflows/notify-docs-on-release.yml +++ b/.github/workflows/notify-docs-on-release.yml @@ -23,7 +23,7 @@ jobs: run: | gh api --method POST \ /repos/${{ github.repository_owner }}/developer-resources-site/actions/workflows/build-docs.yml/dispatches \ - -f ref="master" \ + -f ref="main" \ -F inputs[source_repo]="${{ github.repository }}" \ -F inputs[release_tag]="${{ github.event.release.tag_name }}" \ -F inputs[asset_name]="${{ vars.DOCS_ASSET_NAME }}" diff --git a/.github/workflows/release_build.yml b/.github/workflows/release_build.yml index c949cc6e..730bf486 100644 --- a/.github/workflows/release_build.yml +++ b/.github/workflows/release_build.yml @@ -5,7 +5,7 @@ on: push: # Build on a push to any branch. branches: - - '*' + - '**' # Build on a push of any tag named v* (v1.0, etc.) and generate a release. tags: - 'v*'