Skip to content

Commit

Permalink
ci: fix equality in add-release job
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexB02 committed Sep 9, 2022
1 parent ffa95f0 commit 93ab74a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 93ab74a

Please sign in to comment.