Update CI pipeline to exclude tagged builds

Added an `except` rule to the build job to skip execution for tagged commits. This ensures the build job runs only for relevant non-tagged changes.
This commit is contained in:
2025-04-23 17:12:36 +02:00
parent 192bb59b6f
commit 21d0d1a6cb
+9 -2
View File
@@ -10,7 +10,8 @@
## Preface ## Preface
This project provides a java client for minimalistic access to the Cloudflare API, which is mainly used for managing DNS settings such as creating, updating and deleting DNS records. This project provides a java client for minimalistic access to the Cloudflare API version 4, which is mainly used for
managing DNS settings such as creating, updating and deleting DNS records.
If you encounter any bugs or find missing features, feel free to report them on If you encounter any bugs or find missing features, feel free to report them on
the [GitLab Issues page](https://gitlab.com/thischwa/CloudflareDNS-java/-/issues). the [GitLab Issues page](https://gitlab.com/thischwa/CloudflareDNS-java/-/issues).
@@ -61,7 +62,13 @@ The dependency is:
## Methods Overview ## Methods Overview
The following text focuses on the basic methods. For further information take a look at the [javadoc of the CfDnsClient](https://cloudflaredns-java-f4ee3a.gitlab.io/apidocs/codes/thischwa/cf/CfDnsClient.html). The methods can be categorized as follows:
- `Zone`: list, info
- `Record`: list, info, create, update, delete
The following text focuses on the basic methods. For further information, take a look at
the [javadoc of the CfDnsClient](https://cloudflaredns-java-f4ee3a.gitlab.io/apidocs/codes/thischwa/cf/CfDnsClient.html).
### Instantiation of `CfDnsClient` ### Instantiation of `CfDnsClient`