From 6bcd23cd1f3cab66d115ab82fd3477e606f5dde8 Mon Sep 17 00:00:00 2001 From: Mario Lenz Date: Thu, 22 Aug 2024 17:47:18 +0200 Subject: [PATCH] Drop Publish Collection Docs workflow (#521) SUMMARY This workflow fails the CI, while at the same time I don't understand why it's even there. I think we should remove it. ISSUE TYPE Bugfix Pull Request COMPONENT NAME .github/workflows/docs-push.yml ADDITIONAL INFORMATION #518 #511 #505 Reviewed-by: mikemorency --- .github/workflows/docs-push.yml | 44 --------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 .github/workflows/docs-push.yml diff --git a/.github/workflows/docs-push.yml b/.github/workflows/docs-push.yml deleted file mode 100644 index 16594d0a..00000000 --- a/.github/workflows/docs-push.yml +++ /dev/null @@ -1,44 +0,0 @@ ---- -name: Publish Collection Docs -concurrency: - group: docs-push-${{ github.sha }} - cancel-in-progress: true -on: - push: - branches: - - main - - stable-* - tags: - - "*" - schedule: - - cron: "0 12 * * *" - -jobs: - build-docs: - permissions: - contents: read - name: Build Ansible Docs - uses: ansible-community/github-docs-build/.github/workflows/_shared-docs-build-push.yml@main - with: - init-lenient: false - init-fail-on-error: true - intersphinx-links: | - ansible_devel:https://docs.ansible.com/ansible-core/devel/ - provide-link-targets: | - ansible_collections.vmware.vmware.vcsa_settings_module - - publish-docs-gh-pages: - # use to prevent running on forks - if: github.repository == 'ansible-collections/vmware.vmware_rest' - permissions: - contents: write - pages: write - id-token: write - needs: [build-docs] - name: Publish Ansible Docs - uses: ansible-community/github-docs-build/.github/workflows/_shared-docs-build-publish-gh-pages.yml@main - with: - artifact-name: ${{ needs.build-docs.outputs.artifact-name }} - publish-gh-pages-branch: true - secrets: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}