Browse Source

Merge branch '3.3.x'

Closes gh-41462
pull/41464/head
Andy Wilkinson 2 years ago
parent
commit
291fe282e4
  1. 17
      .github/workflows/build-and-deploy-snapshot.yml

17
.github/workflows/build-and-deploy-snapshot.yml

@ -3,8 +3,6 @@ on: @@ -3,8 +3,6 @@ on:
push:
branches:
- main
permissions:
actions: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
@ -32,10 +30,6 @@ jobs: @@ -32,10 +30,6 @@ jobs:
folder: 'deployment-repository'
signing-key: ${{ secrets.GPG_PRIVATE_KEY }}
signing-passphrase: ${{ secrets.GPG_PASSPHRASE }}
- name: Trigger Docs Build Workflow
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh workflow run deploy-docs.yml -r docs-build -f build-refname=${{ github.ref_name }} -f build-version=${{ steps.build.outputs.version }}
- name: Send Notification
uses: ./.github/actions/send-notification
if: always()
@ -46,6 +40,17 @@ jobs: @@ -46,6 +40,17 @@ jobs:
run-name: ${{ format('{0} | Linux | Java 17', github.ref_name) }}
outputs:
version: ${{ steps.build-and-publish.outputs.version }}
trigger-docs-build:
name: Trigger Docs Build
runs-on: ubuntu-latest
needs: build-and-deploy-snapshot
permissions:
actions: write
steps:
- name: Run Deploy Docs Workflow
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh workflow run deploy-docs.yml -r docs-build -f build-refname=${{ github.ref_name }} -f build-version=${{ needs.build-and-deploy-snapshot.outputs.version }}
verify:
name: Verify
needs: build-and-deploy-snapshot

Loading…
Cancel
Save