just a test commit

This commit is contained in:
2025-06-09 10:52:08 +02:00
parent 35840e900a
commit a6d561657f
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -79,7 +79,6 @@ javadoc:
- git add docs/apidocs
- git commit -m "Update Javadocs [skip ci]" || echo "No changes to commit"
- git push https://${GITLAB_USERNAME}:${CI_PUSH_TOKEN}@gitlab.com/th-schwarz/CloudflareDNS-java.git ${CI_COMMIT_REF_NAME}
#- git push origin ${CI_COMMIT_REF_NAME}
when: manual
rules:
- if: '$CI_COMMIT_REF_NAME == "develop"'
@@ -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.1");
* RecordEntity created = client.recordCreateSld(zone, "api", 60, RecordType.A, "192.168.1.2");
* System.out.println("Created Record ID: " + created.getId());
* </code></pre>
*/