From 77329cd1adba73bac00e19d58b9c918d652bf88c Mon Sep 17 00:00:00 2001 From: Iain Lane Date: Wed, 3 Jul 2024 11:55:58 +0100 Subject: [PATCH 1/2] test --- docs/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/README.md b/docs/README.md index e12fbb7c8..9b3c90629 100644 --- a/docs/README.md +++ b/docs/README.md @@ -39,5 +39,7 @@ Markdown files with relative links. Check out [Starlight’s docs](https://starlight.astro.build/) and the [the Astro documentation](https://docs.astro.build) +test + [astro]: https://astro.build [starlight]: https://starlight.astro.build From 95b4483f3d387800ca5374020534e3dd3b93e892 Mon Sep 17 00:00:00 2001 From: Iain Lane Date: Wed, 3 Jul 2024 11:57:50 +0100 Subject: [PATCH 2/2] print json context --- .github/workflows/publish-page.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-page.yml b/.github/workflows/publish-page.yml index 952d3ea17..e925c9495 100644 --- a/.github/workflows/publish-page.yml +++ b/.github/workflows/publish-page.yml @@ -31,6 +31,8 @@ jobs: runs-on: ubuntu-22.04 steps: + - name: Print github context + run: echo "${{ toJson(github) }}" | jq . - name: Checkout uses: actions/checkout@v4 - name: Install pnpm @@ -40,8 +42,8 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 20 - cache: 'pnpm' - cache-dependency-path: 'docs' + cache: "pnpm" + cache-dependency-path: "docs" - name: Install and Build working-directory: docs