Skip to content

Commit c9451db

Browse files
committed
Update doc building to publish release asset
The automatic doc building in GH Actions will publish a release asset, not a workflow artifact. This is necessary in order for the built docs to be persistent (workflow artifacts expire). The downside is that if docs.globus.org references a build artifact, we might need to "backport" any doc fixes into an old release. However, there should be no harm in doing so, and we aren't promising externally that "released" docs are immutable.
1 parent ff87542 commit c9451db

File tree

1 file changed

+12
-14
lines changed

1 file changed

+12
-14
lines changed

.github/workflows/docs.yaml

+12-14
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
# build and release new docs as a release asset
12
name: Build Docs
23
on:
3-
push:
4-
branches:
5-
- autobuild-doc
4+
release:
5+
types: [created]
66
jobs:
77
doc:
88
name: Build Docs
@@ -21,16 +21,14 @@ jobs:
2121
./reference/_generate.py
2222
# bundle as tarball without the _generate.py script
2323
tar --exclude "*.py" -czf cli-reference.tar.gz reference/
24-
# upload as an artifact -- to download, use the GitHub APIs
25-
# you can find this workflow's ID by listing workflows using:
26-
# https://docs.github.com/en/rest/reference/actions#list-repository-workflows
27-
# then find the last run for a branch:
28-
# https://docs.github.com/en/rest/reference/actions#list-workflow-runs-for-a-repository
29-
#
30-
# and list artifacts for a run:
31-
# https://docs.github.com/en/rest/reference/actions#list-workflow-run-artifacts
24+
# upload as a release asset
3225
- name: Upload Autodoc
33-
uses: actions/upload-artifact@v2
26+
uses: actions/upload-release-asset@v1
27+
env:
28+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3429
with:
35-
name: cli-reference
36-
path: ./cli-reference.tar.gz
30+
# upload URL is pulled from the release event
31+
upload_url: ${{ github.event.release.upload_url }}
32+
asset_path: ./cli-reference.tar.gz
33+
asset_name: cli-reference.tar.gz
34+
asset_content_type: application/gzip

0 commit comments

Comments
 (0)