summaryrefslogtreecommitdiff
path: root/.github/workflows/docs_upload.yml
diff options
context:
space:
mode:
authorGereon Kremer <nafur42@gmail.com>2021-05-12 19:13:06 +0200
committerGitHub <noreply@github.com>2021-05-12 17:13:06 +0000
commit62e1f3ffd0688bc229130a1964c3e50b4575e48f (patch)
tree3fd42c8281fc60d28714877c5df0a7f4e9502d85 /.github/workflows/docs_upload.yml
parentb016f603f2a3709faaf90008a09f2567d7283ff3 (diff)
Move docs upload to a different workflow (#6512)
This PR (finally, I hope) uses a proper setup for uploading the documentation. One of the CI jobs generates the documentation and stores it in an artifact. Another workflow is triggered (via workflow_run) and then uploads this artifact. Only this setup seems to properly work for PR builds.
Diffstat (limited to '.github/workflows/docs_upload.yml')
-rw-r--r--.github/workflows/docs_upload.yml89
1 files changed, 89 insertions, 0 deletions
diff --git a/.github/workflows/docs_upload.yml b/.github/workflows/docs_upload.yml
new file mode 100644
index 000000000..5b5ee32f8
--- /dev/null
+++ b/.github/workflows/docs_upload.yml
@@ -0,0 +1,89 @@
+name: Upload Docs
+
+on:
+ workflow_run:
+ workflows: ["CI"]
+ types:
+ - completed
+
+jobs:
+ upload-docs:
+ name: upload-docs
+ runs-on: ubuntu-latest
+ continue-on-error: true
+ if: github.repository == 'cvc5/cvc5'
+ steps:
+ - name: Setup Deploy Key
+ env:
+ SSH_AUTH_SOCK: /tmp/ssh_agent.sock
+ run: |
+ ssh-agent -a $SSH_AUTH_SOCK > /dev/null
+ ssh-add - <<< "${{ secrets.CVC5_DOCS_TOKEN }}"
+
+ - name: Clone Documentation Repository
+ env:
+ SSH_AUTH_SOCK: /tmp/ssh_agent.sock
+ run: |
+ git config --global user.email "docbot@cvc5"
+ git config --global user.name "DocBot"
+ git clone git@github.com:cvc5/docs-ci.git target/
+
+ - name: Download artifact
+ uses: actions/github-script@v3.1.0
+ with:
+ script: |
+ var artifacts = await github.actions.listWorkflowRunArtifacts({
+ owner: context.repo.owner,
+ repo: context.repo.repo,
+ run_id: ${{github.event.workflow_run.id }},
+ });
+ var matchArtifact = artifacts.data.artifacts.filter((artifact) => {
+ return artifact.name == "documentation"
+ })[0];
+ var download = await github.actions.downloadArtifact({
+ owner: context.repo.owner,
+ repo: context.repo.repo,
+ artifact_id: matchArtifact.id,
+ archive_format: 'zip',
+ });
+ var fs = require('fs');
+ fs.writeFileSync('${{github.workspace}}/download.zip', Buffer.from(download.data));
+
+ - name: Unpack artifact
+ run: unzip download.zip -d docs-new/
+
+ - name: Setup Context
+ run: |
+ HASH=${{ github.event.workflow_run.head_commit.id }}
+ if [ "${{ github.event.workflow_run.event }}" == "push" ] ; then
+ NAME=${{ github.event.workflow_run.head_branch }}
+ echo "Identified branch $NAME"
+ elif [ "${{ github.event.workflow_run.event }}" == "pull_request" ] ; then
+ NAME=$(cat docs-new/prnum)
+ rm docs-new/prnum
+ echo "Identified PR #$NAME (from $HASH)"
+ NAME="pr$NAME"
+ fi
+ echo "NAME=$NAME" >> $GITHUB_ENV
+ echo "HASH=$HASH" >> $GITHUB_ENV
+
+ - name: Update docs
+ continue-on-error: true
+ env:
+ SSH_AUTH_SOCK: /tmp/ssh_agent.sock
+ run: |
+ if [ -n "$NAME" ]; then
+ mv docs-new target/docs-$NAME-$HASH
+ cd target/
+ rm -f docs-$NAME
+ ln -s docs-$NAME-$HASH docs-$NAME
+ git add docs-$NAME docs-$NAME-$HASH
+
+ python3 genindex.py
+ git add README.md
+ git commit -m "Update docs for $NAME"
+
+ git push
+ else
+ echo "Ignored run"
+ fi
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback