Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/spec-update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,6 @@ jobs:
java-version: ${{ env.JAVA_VERSION }}
cache: 'maven'

- name: "Install Baseline SDK Version"
# this is needed as otherwise "process sources" will fail on e.g. orchestration module, if the core module isn't in the maven cache
run: |
mvn install -DskipTests

- name: "Checkout or Create Branch"
id: branch
# Checkout branch if it exists, otherwise create it
Expand Down Expand Up @@ -110,6 +105,11 @@ jobs:
echo "spec_diff=false" >> "$GITHUB_OUTPUT"
fi

- name: "Install Baseline SDK Version"
# this is needed as otherwise "process sources" will fail on e.g. orchestration module, if the core module isn't in the maven cache
run: |
mvn install -DskipTests

- name: "Generate"
id: generate
if: steps.spec_diff.outputs.spec_diff == 'true'
Expand Down