@cryptotaxi247 / netdata-1 / commits / 3dbe22e89

fix conditions for nightly build triggers (#13145)

maneamarius committed Jun 16, 2022 at 14:04 UTC 3dbe22e89e8672758f6bfcbe2e5f8c357010b6b6
1 file changed +3 -3
.github/workflows/release.yml
+3 -3
@@ -111,7 +111,7 @@ jobs:
111 name: Trigger artifact builds
112 runs-on: ubuntu-latest
113 needs: update-changelogs
114 - if: ${{ needs.update-changelogs.outputs.run }} == 'true'
114 + if: needs.update-changelogs.outputs.run == 'true'
115 steps:
116 - name: Checkout
117 id: checkout
@@ -146,7 +146,7 @@ jobs:
146 name: Trigger docker builds
147 runs-on: ubuntu-latest
148 needs: update-changelogs
149 - if: ${{ needs.update-changelogs.outputs.run }} == 'true'
149 + if: needs.update-changelogs.outputs.run == 'true'
150 steps:
151 - name: Checkout
152 id: checkout
@@ -181,7 +181,7 @@ jobs:
181 name: Trigger package builds
182 runs-on: ubuntu-latest
183 needs: update-changelogs
184 - if: ${{ needs.update-changelogs.outputs.run }} == 'true'
184 + if: needs.update-changelogs.outputs.run == 'true'
185 steps:
186 - name: Checkout
187 id: checkout