Skip to content

Commit e487615

Browse files
Fix syntax of the GH Actions workflows
1 parent 8674386 commit e487615

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ jobs:
318318
needs: [test, test_bootstrapped, community_build, test_sbt, test_java11]
319319
if: github.event_name == 'push' &&
320320
startsWith(github.event.ref, 'refs/tags/') &&
321-
!startsWith(github.ref, "sbt-dotty-")
321+
!startsWith(github.ref, 'sbt-dotty-')
322322

323323
env:
324324
RELEASEBUILD: yes
@@ -374,7 +374,7 @@ jobs:
374374
release_name: ${{ github.ref }}
375375
body:
376376
draft: false
377-
prerelease: ${{ endsWith(github.ref, "RC-1") }}
377+
prerelease: ${{ endsWith(github.ref, 'RC1') }}
378378

379379
- name: Upload zip archive to GitHub Release
380380
uses: actions/upload-release-asset@v1
@@ -412,7 +412,7 @@ jobs:
412412
needs: [publish_release]
413413
if: github.event_name == 'push' &&
414414
startsWith(github.event.ref, 'refs/tags/') &&
415-
!startsWith(github.ref, "sbt-dotty-")
415+
!startsWith(github.ref, 'sbt-dotty-')
416416

417417
env:
418418
RELEASEBUILD: yes
@@ -461,7 +461,7 @@ jobs:
461461
needs: [test, test_bootstrapped, community_build, test_sbt, test_java11]
462462
if: github.event_name == 'push' &&
463463
startsWith(github.event.ref, 'refs/tags/') &&
464-
startsWith(github.ref, "sbt-dotty-")
464+
startsWith(github.ref, 'sbt-dotty-')
465465

466466
env:
467467
RELEASEBUILD: yes

0 commit comments

Comments
 (0)