From 3896b1d3390a8377594f8f17a8c6d6cbcccd40fe Mon Sep 17 00:00:00 2001 From: Kendall Gassner Date: Mon, 8 Apr 2024 10:22:32 -0700 Subject: [PATCH] Update publish.yml ### What Update the publish workflow to publish on Release publish In the [release workflow documentation](https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#release) it looks like this might be the preferred activity type. --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c1b229d..9058480 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -2,7 +2,7 @@ name: Publish on: release: - types: [created] + types: [published] jobs: publish-npm: