From bb77d3577353e7afc57bba76249cc956a77097e0 Mon Sep 17 00:00:00 2001 From: uyjulian Date: Fri, 19 Feb 2021 12:21:16 -0600 Subject: [PATCH] Add missing or statement for create-release --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d0172b0..11e09b9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -96,7 +96,7 @@ jobs: create-release: needs: [build-ubuntu, build-win32, build-macos] runs-on: ubuntu-20.04 - if: github.ref == 'refs/heads/master' + if: startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/master' steps: - name: Download ubuntu artifact uses: actions/download-artifact@v1