From aca9cdd311a0ac4ee6876237f0f245a6eb4ca6e1 Mon Sep 17 00:00:00 2001 From: Antoine Meillet Date: Mon, 5 Jul 2021 13:06:47 +0200 Subject: [PATCH] Also run deploy jobs on new tags --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 795d59a..5f75636 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -35,7 +35,7 @@ jobs: runs-on: ubuntu-latest needs: run-tests # only run when tests where successful continue-on-error: true - if: github.ref == 'refs/heads/master' + if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags') steps: - uses: actions/checkout@v2