Re: [PR] IGNITE-28643 Fixed website documentation publishing job [ignite]

2026-05-05 Thread via GitHub


NSAmelchev merged PR #13102:
URL: https://github.com/apache/ignite/pull/13102


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] IGNITE-28643 Fixed website documentation publishing job [ignite]

2026-05-05 Thread via GitHub


sonarqubecloud[bot] commented on PR #13102:
URL: https://github.com/apache/ignite/pull/13102#issuecomment-4377849848

   ## [![Quality Gate 
Passed](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/checks/QualityGateBadge/qg-passed-20px.png
 'Quality Gate 
Passed')](https://sonarcloud.io/dashboard?id=apache_ignite&pullRequest=13102) 
**Quality Gate passed**  
   Issues  
   
![](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/passed-16px.png
 '') [0 New 
issues](https://sonarcloud.io/project/issues?id=apache_ignite&pullRequest=13102&issueStatuses=OPEN,CONFIRMED&sinceLeakPeriod=true)
  
   
![](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/accepted-16px.png
 '') [0 Accepted 
issues](https://sonarcloud.io/project/issues?id=apache_ignite&pullRequest=13102&issueStatuses=ACCEPTED)
   
   Measures  
   
![](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/passed-16px.png
 '') [0 Security 
Hotspots](https://sonarcloud.io/project/security_hotspots?id=apache_ignite&pullRequest=13102&issueStatuses=OPEN,CONFIRMED&sinceLeakPeriod=true)
  
   
![](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/passed-16px.png
 '') [0.0% Coverage on New 
Code](https://sonarcloud.io/component_measures?id=apache_ignite&pullRequest=13102&metric=new_coverage&view=list)
  
   
![](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/passed-16px.png
 '') [0.0% Duplication on New 
Code](https://sonarcloud.io/component_measures?id=apache_ignite&pullRequest=13102&metric=new_duplicated_lines_density&view=list)
  
 
   [See analysis details on SonarQube 
Cloud](https://sonarcloud.io/dashboard?id=apache_ignite&pullRequest=13102)
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] IGNITE-28643 Fixed website documentation publishing job [ignite]

2026-05-05 Thread via GitHub


NSAmelchev commented on code in PR #13102:
URL: https://github.com/apache/ignite/pull/13102#discussion_r3187145947


##
.github/workflows/publish-website-on-branch-update.yml:
##
@@ -44,15 +44,20 @@ jobs:
   - name: Check out 'ignite' repository code
 uses: actions/checkout@v3
 
-  - name: Check that the version was released
-run: |
-  mvn org.apache.maven.plugins:maven-enforcer-plugin:3.0.0-M3:enforce 
-Drules=requireReleaseDeps,requireReleaseVersion -pl modules/core
-
   - name: Get the version from POM file
 run: |
   version=$(mvn help:evaluate -Dexpression=project.version -q 
-DforceStdout)
   echo "IGNITE_VERSION=$version" >> $GITHUB_ENV
 
+  - name: Check that the version was released
+run: |
+  
URL="https://repo1.maven.org/maven2/org/apache/ignite/ignite-core/${IGNITE_VERSION}/ignite-core-${IGNITE_VERSION}.pom";

Review Comment:
   Fixed to 
[https://repo.maven.apache.org](https://repo.maven.apache.org/maven2/org/apache/ignite/)
   
   



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] IGNITE-28643 Fixed website documentation publishing job [ignite]

2026-05-05 Thread via GitHub


zstan commented on code in PR #13102:
URL: https://github.com/apache/ignite/pull/13102#discussion_r3187092788


##
.github/workflows/publish-website-on-branch-update.yml:
##
@@ -44,15 +44,20 @@ jobs:
   - name: Check out 'ignite' repository code
 uses: actions/checkout@v3
 
-  - name: Check that the version was released
-run: |
-  mvn org.apache.maven.plugins:maven-enforcer-plugin:3.0.0-M3:enforce 
-Drules=requireReleaseDeps,requireReleaseVersion -pl modules/core
-
   - name: Get the version from POM file
 run: |
   version=$(mvn help:evaluate -Dexpression=project.version -q 
-DforceStdout)
   echo "IGNITE_VERSION=$version" >> $GITHUB_ENV
 
+  - name: Check that the version was released
+run: |
+  
URL="https://repo1.maven.org/maven2/org/apache/ignite/ignite-core/${IGNITE_VERSION}/ignite-core-${IGNITE_VERSION}.pom";

Review Comment:
   just for clarification, why _repo1_and not _repo_ ?
   https://repo.maven.apache.org/maven2/org/apache/ignite/



##
.github/workflows/publish-website-on-branch-update.yml:
##
@@ -44,15 +44,20 @@ jobs:
   - name: Check out 'ignite' repository code
 uses: actions/checkout@v3
 
-  - name: Check that the version was released
-run: |
-  mvn org.apache.maven.plugins:maven-enforcer-plugin:3.0.0-M3:enforce 
-Drules=requireReleaseDeps,requireReleaseVersion -pl modules/core
-
   - name: Get the version from POM file
 run: |
   version=$(mvn help:evaluate -Dexpression=project.version -q 
-DforceStdout)
   echo "IGNITE_VERSION=$version" >> $GITHUB_ENV
 
+  - name: Check that the version was released
+run: |
+  
URL="https://repo1.maven.org/maven2/org/apache/ignite/ignite-core/${IGNITE_VERSION}/ignite-core-${IGNITE_VERSION}.pom";

Review Comment:
   just for clarification, why _repo1_ and not _repo_ ?
   https://repo.maven.apache.org/maven2/org/apache/ignite/



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] IGNITE-28643 Fixed website documentation publishing job [ignite]

2026-05-05 Thread via GitHub


sonarqubecloud[bot] commented on PR #13102:
URL: https://github.com/apache/ignite/pull/13102#issuecomment-4377600924

   ## [![Quality Gate 
Passed](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/checks/QualityGateBadge/qg-passed-20px.png
 'Quality Gate 
Passed')](https://sonarcloud.io/dashboard?id=apache_ignite&pullRequest=13102) 
**Quality Gate passed**  
   Issues  
   
![](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/passed-16px.png
 '') [0 New 
issues](https://sonarcloud.io/project/issues?id=apache_ignite&pullRequest=13102&issueStatuses=OPEN,CONFIRMED&sinceLeakPeriod=true)
  
   
![](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/accepted-16px.png
 '') [0 Accepted 
issues](https://sonarcloud.io/project/issues?id=apache_ignite&pullRequest=13102&issueStatuses=ACCEPTED)
   
   Measures  
   
![](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/passed-16px.png
 '') [0 Security 
Hotspots](https://sonarcloud.io/project/security_hotspots?id=apache_ignite&pullRequest=13102&issueStatuses=OPEN,CONFIRMED&sinceLeakPeriod=true)
  
   
![](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/passed-16px.png
 '') [0.0% Coverage on New 
Code](https://sonarcloud.io/component_measures?id=apache_ignite&pullRequest=13102&metric=new_coverage&view=list)
  
   
![](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/passed-16px.png
 '') [0.0% Duplication on New 
Code](https://sonarcloud.io/component_measures?id=apache_ignite&pullRequest=13102&metric=new_duplicated_lines_density&view=list)
  
 
   [See analysis details on SonarQube 
Cloud](https://sonarcloud.io/dashboard?id=apache_ignite&pullRequest=13102)
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]