From 93ab74a18d0d039edac1891cb9e59c78697488fe Mon Sep 17 00:00:00 2001 From: "AlexB.02" Date: Fri, 9 Sep 2022 17:27:33 +0100 Subject: [PATCH] ci: fix equality in add-release job --- .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 65f88b8..d6c51df 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -31,7 +31,7 @@ jobs: name: "Add release" runs-on: "ubuntu-latest" needs: test - if: ${{ github.ref_type }} == "tag" + if: github.ref_type == 'tag' steps: - uses: actions/checkout@v3 - run: sbt assembly