commit
291fe282e4
|
|
@ -3,8 +3,6 @@ on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
permissions:
|
|
||||||
actions: write
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
jobs:
|
jobs:
|
||||||
|
|
@ -32,10 +30,6 @@ jobs:
|
||||||
folder: 'deployment-repository'
|
folder: 'deployment-repository'
|
||||||
signing-key: ${{ secrets.GPG_PRIVATE_KEY }}
|
signing-key: ${{ secrets.GPG_PRIVATE_KEY }}
|
||||||
signing-passphrase: ${{ secrets.GPG_PASSPHRASE }}
|
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
|
- name: Send Notification
|
||||||
uses: ./.github/actions/send-notification
|
uses: ./.github/actions/send-notification
|
||||||
if: always()
|
if: always()
|
||||||
|
|
@ -46,6 +40,17 @@ jobs:
|
||||||
run-name: ${{ format('{0} | Linux | Java 17', github.ref_name) }}
|
run-name: ${{ format('{0} | Linux | Java 17', github.ref_name) }}
|
||||||
outputs:
|
outputs:
|
||||||
version: ${{ steps.build-and-publish.outputs.version }}
|
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:
|
verify:
|
||||||
name: Verify
|
name: Verify
|
||||||
needs: build-and-deploy-snapshot
|
needs: build-and-deploy-snapshot
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue