Fix the condition for deploying to Chocolatey

This commit is contained in:
Natalie Weizenbaum 2021-01-11 16:50:10 -08:00
parent f3bd9103ed
commit 647fc45fcf

View File

@ -258,7 +258,7 @@ jobs:
name: "Deploy Chocolatey"
runs-on: windows-latest
needs: [sanity_checks]
if: "startsWith('refs/tags/', github.ref) && github.repository == 'sass/dart-sass'"
if: "startsWith(github.ref, 'refs/tags/') && github.repository == 'sass/dart-sass'"
steps:
- uses: actions/checkout@v2