Skip to content

Commit

Permalink
Fix typo in build.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
ppkarwasz committed Sep 3, 2024
1 parent 0e22358 commit 749b577
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ jobs:
if: github.actor != 'dependabot[bot]'
uses: apache/logging-parent/.github/workflows/build-reusable.yaml@rel/11.2.0
secrets:
DV_ACCESS_TOKEN: ${{ ! startsWith(github.refname, 'release/') && secrets.GE_ACCESS_TOKEN }}
DV_ACCESS_TOKEN: ${{ ! startsWith(github.ref_name, 'release/') && secrets.GE_ACCESS_TOKEN }}
with:
java-version: |
8
17
site-enabled: true
reproducibility-check-enabled: false
develocity-enabled: ${{ ! startsWith(github.refname, 'release/') }}
reproducibility-check-enabled: ${{ startsWith(github.ref_name, 'release/') }}
develocity-enabled: ${{ ! startsWith(github.ref_name, 'release/') }}

deploy-snapshot:
needs: build
Expand Down

0 comments on commit 749b577

Please sign in to comment.