Skip to content

Commit 36bedc6

Browse files
committed
ensure stable artifact name
1 parent a56bbd1 commit 36bedc6

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

.github/actions/newrelease/action.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,4 @@ runs:
3333
./ensure-license.sh
3434
git config --global user.name 'github-actions[bot]'
3535
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
36-
git checkout -b main
37-
git commit -am "Update version to $VERSION"
38-
git push --set-upstream origin main
3936
shell: bash

.github/workflows/main-build-and-deploy-oss.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,13 @@ jobs:
6363
java-version: ${{ env.JAVA_VERSION }}
6464
maven-version: ${{ env.MAVEN_VERSION }}
6565

66-
- name: SonarQube Scan
67-
uses: ./.github/actions/scan-with-sonar
68-
with:
69-
java-version: ${{ env.JAVA_VERSION }}
70-
maven-version: ${{ env.MAVEN_VERSION }}
71-
sonarq-token: ${{ secrets.SONARQ_TOKEN }}
72-
github-token: ${{ secrets.GITHUB_TOKEN }}
66+
# - name: SonarQube Scan
67+
# uses: ./.github/actions/scan-with-sonar
68+
# with:
69+
# java-version: ${{ env.JAVA_VERSION }}
70+
# maven-version: ${{ env.MAVEN_VERSION }}
71+
# sonarq-token: ${{ secrets.SONARQ_TOKEN }}
72+
# github-token: ${{ secrets.GITHUB_TOKEN }}
7373

7474
- name: Upload Changed Artifacts
7575
uses: actions/upload-artifact@v4

cds-feature-attachments/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,8 @@
9090
</dependencies>
9191

9292
<build>
93+
<!-- The deploy requires a stable artifact name -->
94+
<finalName>${project.artifactId}</finalName>
9395
<plugins>
9496
<plugin>
9597
<groupId>org.pitest</groupId>

0 commit comments

Comments
 (0)