parent
8deed1bad5
commit
ce533c8ff9
|
@ -98,7 +98,10 @@ jobs:
|
|||
#
|
||||
# and the name is updated when the steps below are skipped which makes what's happening clearer
|
||||
# in the GitHub UI
|
||||
name: publish-snapshots${{ github.ref_name == 'main' && github.repository == 'open-telemetry/opentelemetry-java' && '' || ' (skipped)' }}
|
||||
#
|
||||
# note: the condition below has to be written so that '' is last since it resolves to false
|
||||
# and so would not short-circuit if used in the second-last position
|
||||
name: publish-snapshots${{ (github.ref_name != 'main' || github.repository != 'open-telemetry/opentelemetry-java') && ' (skipped)' || '' }}
|
||||
# intentionally not blocking snapshot publishing on markdown-link-check or misspell-check
|
||||
needs: build
|
||||
runs-on: ubuntu-20.04
|
||||
|
|
Loading…
Reference in New Issue