Refactor GitLab CI stages and fix example IP address in CfDnsClient documentation

This commit is contained in:
2025-06-09 13:17:03 +02:00
parent df1893fdb9
commit 00bc33060c
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -80,7 +80,7 @@ javadoc:
- |
if ! git diff --quiet -- docs/apidocs; then
git add docs/apidocs
git commit -m "Update Javadocs"
git commit -m "Update Javadocs [skip ci]"
git push https://${GITLAB_USERNAME}:${CI_PUSH_TOKEN}@gitlab.com/th-schwarz/CloudflareDNS-java.git ${CI_COMMIT_REF_NAME}
echo "Commits found and pushed"
mkdir public
@@ -33,7 +33,7 @@ import lombok.extern.slf4j.Slf4j;
* System.out.println("Record Type: " + record.getType() + ", Value: " + record.getContent())
* );
* // Create a record for the subdomain "api"
* RecordEntity created = client.recordCreateSld(zone, "api", 60, RecordType.A, "192.168.1.7");
* RecordEntity created = client.recordCreateSld(zone, "api", 60, RecordType.A, "192.168.1.8");
* System.out.println("Created Record ID: " + created.getId());
* </code></pre>
*/