diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-26 06:22:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-26 06:22:20 +0000 |
commit | 18bd2207b6c1977e99a93673a7be099e23f0f547 (patch) | |
tree | 40fd9e5913462a88be6ba24be6953383c5b39874 /ansible_collections/cisco/dnac/.github/workflows | |
parent | Releasing progress-linux version 10.0.1+dfsg-1~progress7.99u1. (diff) | |
download | ansible-18bd2207b6c1977e99a93673a7be099e23f0f547.tar.xz ansible-18bd2207b6c1977e99a93673a7be099e23f0f547.zip |
Merging upstream version 10.1.0+dfsg.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ansible_collections/cisco/dnac/.github/workflows')
-rw-r--r-- | ansible_collections/cisco/dnac/.github/workflows/docs.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ansible_collections/cisco/dnac/.github/workflows/docs.yml b/ansible_collections/cisco/dnac/.github/workflows/docs.yml index 46ab0dbc2..daf83e452 100644 --- a/ansible_collections/cisco/dnac/.github/workflows/docs.yml +++ b/ansible_collections/cisco/dnac/.github/workflows/docs.yml @@ -6,21 +6,21 @@ on: - v[0-9]+.[0-9]+.[0-9]+ branches: - main - workflow_dispatch: + jobs: docs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v2 - name: configure git run: | git config user.name "${GITHUB_ACTOR}" git config user.email "${GITHUB_ACTOR}@bots.github.com" git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/* - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v2 with: - python-version: "3.11" + python-version: "3.7" - name: Install dependencies run: make doc-setup - name: Build docs @@ -36,4 +36,4 @@ jobs: git add $(basename ${GITHUB_REF}) index.html git commit -m "update docs for $(basename ${GITHUB_REF})" || true - name: push docs - run: git push origin gh-pages
\ No newline at end of file + run: git push origin gh-pages |