Skip to content

Commit 8b4e8aa

Browse files
fix: [DevOps] spec update workflow edge case
1 parent 41b4717 commit 8b4e8aa

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

.github/workflows/spec-update.yaml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -105,16 +105,11 @@ jobs:
105105
echo "spec_diff=false" >> "$GITHUB_OUTPUT"
106106
fi
107107
108-
- name: "Install Baseline SDK Version"
109-
# this is needed as otherwise "process sources" will fail on e.g. orchestration module, if the core module isn't in the maven cache
110-
run: |
111-
mvn install -DskipTests
112-
113108
- name: "Generate"
114109
id: generate
115110
if: steps.spec_diff.outputs.spec_diff == 'true'
116111
run: |
117-
mvn process-sources -Dgenerate ${{ env.MVN_MULTI_THREADED_ARGS }}
112+
mvn install -DskipTests -Dgenerate ${{ env.MVN_MULTI_THREADED_ARGS }}
118113
119114
- name: "Compile and Test"
120115
id: compile

0 commit comments

Comments
 (0)