From 3076b42181f1626e796bd2b526544da1a2d44537 Mon Sep 17 00:00:00 2001 From: Jaden Sterner <92942612+jsterner30@users.noreply.github.com> Date: Mon, 29 Jan 2024 17:48:48 -0700 Subject: [PATCH] fix: only publish on updates to index.d.ts and update GHA mod version --- .github/workflows/deploy.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 8e05f16..2e59a76 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -3,6 +3,8 @@ name: Deployment on: push: branches: [master] + paths: + - 'index.d.ts' env: node_version: "20" @@ -13,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Disallow Concurrent Runs uses: byu-oit/github-action-disallow-concurrent-runs@v2