Good day, I am trying to publish my pipeline for the Azure deploy CLI and everything is going smoothly until i need to utilize my azure variable group which contain variables i need to utilize in my action secrets, my config.json:
  {
    "AUTH0_DOMAIN": "{AUTH0-TENANT-DOMAIN}",
    "AUTH0_CLIENT_ID": "{AUTH0-DEPLOY-CLI-CLIENT-ID}",
    "AUTH0_ALLOW_DELETE": "{AUTH0-ALLOW-DELETE}",
    "AUTH0_KEYWORD_REPLACE_MAPPINGS": {
      "Env": "{AUTH0-ENV}"
    }
  }
my tenant.yml:
actions:
  - name: Add a JWT ID
    code: ./actions/Add a JWT ID/code.js
    dependencies:
      - name: uuid
        version: 10.0.0
    deployed: true
    runtime: node18-actions
    secrets: 
      - name: Env
        value: "@@Env@@"
    status: built
    supported_triggers:
      - id: post-login
        version: v3
The value im getting when im running and testing my action is “{AUTH0-ENV}”, it seems its not pulling my azure pipeline variable group value. The deploy cli works perfectly and my other azure env variables pull through nicely however my action secrets are not. any idea where im going wrong? Thanks