From 5409b339925f7e58ff6c26758ffc94e0f10e6077 Mon Sep 17 00:00:00 2001 From: broki <61258338+brokiem@users.noreply.github.com> Date: Tue, 16 Jan 2024 19:43:25 +0800 Subject: [PATCH 1/2] docs: corrected a url typo (#279) --- apps/www/src/content/docs/about.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/www/src/content/docs/about.md b/apps/www/src/content/docs/about.md index 21e9e6be..9e48890a 100644 --- a/apps/www/src/content/docs/about.md +++ b/apps/www/src/content/docs/about.md @@ -5,7 +5,7 @@ description: Powered by amazing open source projects. ## About -[shadcn-vue](https://shadcn-vuee.com) is a port of [shadcn/ui](https://ui.shadcn.com) for Vue/Nuxt. It's maintained by [radix-vue](https://github.com/radix-vue). +[shadcn-vue](https://shadcn-vue.com) is a port of [shadcn/ui](https://ui.shadcn.com) for Vue/Nuxt. It's maintained by [radix-vue](https://github.com/radix-vue). ## Credits @@ -17,4 +17,4 @@ description: Powered by amazing open source projects. ## License -MIT © [shadcn](https://shadcn.com) & [radix-vue](https://github.com/radix-vue) \ No newline at end of file +MIT © [shadcn](https://shadcn.com) & [radix-vue](https://github.com/radix-vue) From 84d2c4f1a664d5f7d800bac250e264774ce729b5 Mon Sep 17 00:00:00 2001 From: zernonia Date: Tue, 16 Jan 2024 23:08:25 +0800 Subject: [PATCH 2/2] chore: test using ref sha --- .github/workflows/publish.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 8c407ce8..e4d64b66 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -52,6 +52,14 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 + with: + ref: ${{ github.event.pull_request.head.sha || github.ref }} + fetch-depth: 0 + + - name: Print pull request head information + run: | + echo "Pull Request SHA: ${{ github.event.pull_request.head.sha }}" + echo "Pull Request Ref: ${{ github.event.pull_request.head.ref }}" # Run a build step here - name: Setup Node.js environment