Skip to content

Commit

Permalink
fix: attempt to fix contains syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
ZavenArra committed Dec 10, 2020
1 parent 825b53b commit f6a0b73
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/treetracker-wallet-api-build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: Build Server Project
runs-on: ubuntu-latest
if: |
"!contains(github.event.head_commit.message, 'skip-ci')" &&
!contains(github.event.head_commit.message, 'skip-ci') &&
github.event_name == 'push' &&
github.repository == 'Greenstand/treetracker-wallet-api'
steps:
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
needs: build
runs-on: ubuntu-latest
if: |
"!contains(github.event.head_commit.message, 'skip-ci')" &&
!contains(github.event.head_commit.message, 'skip-ci') &&
github.event_name == 'push' &&
github.repository == 'Greenstand/treetracker-wallet-api'
steps:
Expand All @@ -93,7 +93,7 @@ jobs:
runs-on: ubuntu-latest
needs: release
if: |
"!contains(github.event.head_commit.message, 'skip-ci')" &&
!contains(github.event.head_commit.message, 'skip-ci') &&
github.event_name == 'push' &&
github.repository == 'Greenstand/treetracker-wallet-api'
steps:
Expand Down

0 comments on commit f6a0b73

Please sign in to comment.