Skip to content

Commit 62e6a8a

Browse files
authored
Merge pull request #531 from bci-oss/fix-release-pipeline
Remove spurious build step IDs
2 parents 7690a6b + 4cfea8b commit 62e6a8a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release-workflow.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,7 @@ jobs:
182182
- name: Build and run tests
183183
run: |
184184
export MAVEN_OPTS="-Xmx4096m"
185+
export JAVA_TOOL_OPTIONS="-Dfile.encoding=UTF8"
185186
# Required for reactor dependencies
186187
mvn clean install -DskipTests -Dmaven.javadoc.skip=true
187188
mvn versions:set -DnewVersion=${{ github.event.inputs.release_version }}
@@ -191,6 +192,7 @@ jobs:
191192
mvn -B -pl '!org.eclipse.esmf:samm-cli' clean install -Dmaven.wagon.httpconnectionManager.ttlSeconds=60
192193
# Build of CLI
193194
cd tools/samm-cli
195+
unset JAVA_TOOL_OPTIONS
194196
mvn -B clean verify -Dmaven.wagon.httpconnectionManager.ttlSeconds=60
195197
mvn -B verify -Pnative -Dmaven.wagon.httpconnectionManager.ttlSeconds=60
196198
shell: bash
@@ -300,8 +302,7 @@ jobs:
300302
# Full release: Github
301303
- name: "Create Github release (full)"
302304
if: ${{ !contains( github.event.inputs.release_version, '-M' ) }}
303-
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844v1 # v0.1.15
304-
id: esmf_sdk_release
305+
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v0.1.15
305306
with:
306307
body: "Release version ${{ github.event.inputs.release_version }}."
307308
tag_name: v${{ github.event.inputs.release_version }}
@@ -365,8 +366,7 @@ jobs:
365366
# Milestone release: Github
366367
- name: "Create Github release (milestone)"
367368
if: contains( github.event.inputs.release_version, '-M' )
368-
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844v1 # v0.1.15
369-
id: esmf_sdk_release
369+
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v0.1.15
370370
with:
371371
body: "Release version ${{ github.event.inputs.release_version }}."
372372
tag_name: v${{ github.event.inputs.release_version }}

0 commit comments

Comments
 (0)