Skip to content

Commit

Permalink
ci: improve the release docs workflow
Browse files Browse the repository at this point in the history
old docs will now be handled correctly
  • Loading branch information
RebeccaStevens committed Aug 12, 2023
1 parent 6b53946 commit c63dd32
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 30 deletions.
71 changes: 42 additions & 29 deletions .github/workflows/release-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,49 +14,39 @@ concurrency:
cancel-in-progress: false

jobs:
get_old_docs:
runs-on: ubuntu-latest
steps:
- name: get the gh-pages repo
uses: actions/checkout@v3
with:
ref: gh-pages
continue-on-error: true

- name: tar the existing docs
run: |
mkdir -p ./docs/generated
tar -cvf old-docs.tar ./docs/generated
- name: create a document artifact
uses: actions/upload-artifact@v3
with:
name: old-docs
path: old-docs.tar

update_and_deploy_docs:
needs: get_old_docs
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout src
- name: get the current docs
uses: actions/checkout@v3
with:
ref: gh-pages

- uses: ./.github/actions/prepare
- name: Save old docs
run: tar -cvf /tmp/old-docs.tar ./docs/generated

- run: mkdir -p ./docs/generated
- name: Download the existing documents artifact
uses: actions/download-artifact@v3
- name: Checkout src
uses: actions/checkout@v3
with:
name: old-docs
fetch-depth: 0
clean: false # doesn't seem to work?? - Hence use of tarballs

- name: Restore old docs
run: |
mkdir -p ./docs/generated
tar -xf /tmp/old-docs.tar ./docs/generated -C ./docs/generated
- run: tar -xf old-docs.tar ./docs/generated -C ./docs/generated
- uses: ./.github/actions/prepare

- name: Build docs
run: pnpm run docs

- name: Save new docs
run: tar -cvf /tmp/new-docs.tar ./docs/generated

- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
Expand All @@ -67,6 +57,7 @@ jobs:
uses: actions/deploy-pages@v2

- run: 'echo "PACKAGE_VERSION=$(cat package.json | grep version | head -1 | awk -F: ''{ print $2 }'' | sed ''s/[", ]//g'')" >> $GITHUB_ENV'

- name: Update Coverage Badge
run: cp ./docs/generated/v$PACKAGE_VERSION/coverage.svg ./docs/coverage.svg

Expand All @@ -87,10 +78,32 @@ jobs:
- if: steps.push_coverage.outputs.push_coverage != '0'
run: |
git add docs/coverage.svg
git commit -m "docs: updated documentation coverage"
git commit -m "docs: update documentation coverage"
git push
- if: ${{ always() && steps.push_coverage.outputs.push_coverage != '0' }}
uses: ./.github/actions/protect-main
with:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}

- name: get gh-pages
uses: actions/checkout@v3
with:
ref: gh-pages
clean: false # doesn't seem to work?? - Hence use of tarballs

- name: Restore new docs
run: |
rm -r ./docs/generated
mkdir -p ./docs/generated
tar -xf /tmp/new-docs.tar ./docs/generated -C ./docs/generated
- name: Push new docs
run: |
git add -f docs/generated
git commit -m "docs: update documentation"
git push
continue-on-error: true

- name: Checkout src
uses: actions/checkout@v3
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@
],
"scripts": {
"build": "tsup src/index.ts --clean --format cjs,esm --outDir lib --dts && cp lib/index.d.ts lib/index.d.cts",
"docs": "typedoc",
"docs": "pnpm run docs:build && pnpm run docs:build-post",
"docs:build": "typedoc",
"docs:build-post": "find -lname \"$PWD/docs/generated/*\" | while read link; do target=$(readlink $link); relative_target=$(realpath $target --relative-to=$link/.. --no-symlinks --canonicalize-missing); ln --force --symbolic --no-target-directory $relative_target $link; done",
"docs:serve": "http-serve docs/generated",
"format": "prettier \"**/*\" --ignore-unknown",
"format:write": "pnpm format --write",
Expand Down

0 comments on commit c63dd32

Please sign in to comment.