Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: heremaps/here-sbt-bom
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.20
Choose a base ref
...
head repository: heremaps/here-sbt-bom
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.0.21
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Dec 10, 2024

  1. [skip release] Fix order of steps for skip release (#34)

    Signed-off-by: Anton Wilhelm <anton.wilhelm@here.com>
    devtonhere authored Dec 10, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    phillebaba Philip Laine
    Copy the full SHA
    0562f2a View commit details
Showing with 6 additions and 3 deletions.
  1. +6 −3 .github/workflows/release.yml
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -14,13 +14,16 @@ jobs:
if: ${{ github.event.workflow_run.conclusion == 'success' }}

steps:
- name: Check Skip Commit
id: checkskip
run: if [[ $(git log -1 --pretty=format:"%s") =~ "\[skip release\]" ]]; then false; else true; fi

- uses: actions/checkout@v3
with:
ref: master
fetch-depth: 0

- name: Check Skip Commit
id: checkskip
run: if [[ $(git log -1 --pretty=format:"%s") =~ "\[skip release\]" ]]; then false; else true; fi

- name: Set up JDK 8
if: steps.checkskip.conclusion == 'success'
uses: actions/setup-java@v3