mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-infect.git
synced 2024-11-26 21:31:27 +00:00
PoC: Alternative envvar definition
This commit is contained in:
parent
362e0bbdd1
commit
da430c2d0f
|
@ -39,14 +39,14 @@ steps:
|
|||
from_secret: ZONE_ID
|
||||
commands:
|
||||
- >
|
||||
curl -s -X GET "https://api.cloudflare.com/client/v4/zones?name=${DOMAIN}"
|
||||
-H "Authorization: Bearer ${CLOUDFLARE_TOKEN}"
|
||||
curl -s -X GET "https://api.cloudflare.com/client/v4/zones?name=$DOMAIN"
|
||||
-H "Authorization: Bearer $CLOUDFLARE_TOKEN"
|
||||
-H "Content-Type: application/json"
|
||||
- >
|
||||
curl -s -X POST "https://api.cloudflare.com/client/v4/zones/$ZONE_ID/dns_records"
|
||||
-H "Authorization: Bearer ${CLOUDFLARE_TOKEN}"
|
||||
-H "Authorization: Bearer $CLOUDFLARE_TOKEN"
|
||||
-H "Content-Type: application/json"
|
||||
--data '{"type":"A","name":"'"${DOMAIN}"'","content":"'"${machineip}"'","ttl":3600,"priority":10,"proxied":false}'
|
||||
--data '{"type":"A","name":"'"$DOMAIN"'","content":"'"$machineip"'","ttl":3600,"priority":10,"proxied":false}'
|
||||
- >
|
||||
curl -s -X POST "https://api.cloudflare.com/client/v4/zones/${ZONE_ID}/dns_records"
|
||||
-H "Authorization: Bearer ${CLOUDFLARE_TOKEN}"
|
||||
|
|
Loading…
Reference in a new issue