Skip to content

Commit f79b5d1

Browse files
committed
fix CI script
1 parent a942b7b commit f79b5d1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ jobs:
5555

5656
# publish snapshot after successful tests (only for snapshots)
5757
publish:
58-
if: github.ref == 'refs/heads/dw-3' && github.event_name != 'pull_request' && endsWith(steps.project.outputs.version, '-SNAPSHOT')
58+
if: ${{ github.ref == 'refs/heads/dw-3' && github.event_name != 'pull_request' && endsWith(steps.project.outputs.version, '-SNAPSHOT') }}
5959
needs: build
6060
uses: ./.github/workflows/publish-snapshot.yml
6161

6262
# run examples with published snapshot (only for snapshots)
6363
examples:
64-
if: github.ref == 'refs/heads/dw-3' && github.event_name != 'pull_request' && endsWith(steps.project.outputs.version, '-SNAPSHOT')
64+
if: ${{ github.ref == 'refs/heads/dw-3' && github.event_name != 'pull_request' && endsWith(steps.project.outputs.version, '-SNAPSHOT') }}
6565
needs: publish
6666
uses: ./.github/workflows/examples-CI.yml

0 commit comments

Comments
 (0)