From 3bdfa028c4387b2541f5fd40880dd3e30b63f6d0 Mon Sep 17 00:00:00 2001 From: Harmon Date: Wed, 23 Dec 2020 14:16:56 -0600 Subject: [PATCH] Change GitHub Actions Deploy workflow to run when releases are published Rather than when created, so that saving a draft release doesn't trigger the workflow --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 60c285e..4cb693a 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -2,7 +2,7 @@ name: Deploy on: release: - types: [created] + types: [published] jobs: deploy: -- 2.25.1