We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f686a5a commit 56e1749Copy full SHA for 56e1749
.github/workflows/containers.yml
@@ -13,6 +13,10 @@ env:
13
14
jobs:
15
release-please:
16
+ if: github.event_name == 'push' && github.ref == 'refs/heads/main'
17
+ concurrency:
18
+ group: release-please-${{ github.ref }}
19
+ cancel-in-progress: true
20
permissions:
21
contents: write
22
pull-requests: write
@@ -31,6 +35,7 @@ jobs:
31
35
builds-linux:
32
36
runs-on: ubuntu-latest
33
37
needs: release-please
38
+ if: always() && (needs.release-please.result == 'success' || needs.release-please.result == 'skipped')
34
39
strategy:
40
matrix:
41
target: [indexer-service-rs, indexer-tap-agent]
0 commit comments