From dbe12c0d340972ba202bb6a0c723abca02ec7f60 Mon Sep 17 00:00:00 2001
From: L01D <45131480+IL01DI@users.noreply.github.com>
Date: Mon, 01 Jul 2024 04:03:45 +0000
Subject: [PATCH] i18n: Improving Spanish & adding Catalan and British English (#1240)

---
 .github/workflows/ci.yaml |   11 +++++++++--
 1 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 9bf34a9..5dde6ac 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -7,6 +7,7 @@
   push:
     branches:
       - v4
+  workflow_dispatch:
 
 jobs:
   build-and-test:
@@ -47,14 +48,20 @@
         run: npx quartz build --bundleInfo
 
   publish-tag:
-    if: ${{ github.repository == 'jackyzha0/quartz' }}
+    if: ${{ github.repository == 'jackyzha0/quartz' && github.ref == 'refs/heads/v4' }}
     runs-on: ubuntu-latest
     permissions:
       contents: write
     steps:
+      - uses: actions/checkout@v3
+        with:
+          fetch-depth: 0
+      - name: Setup Node
+        uses: actions/setup-node@v3
+        with:
+          node-version: 18
       - name: Get package version
         run: node -p -e '`PACKAGE_VERSION=${require("./package.json").version}`' >> $GITHUB_ENV
-
       - name: Create release tag
         uses: pkgdeps/git-tag-action@v2
         with:

--
Gitblit v1.10.0