@@ -10,10 +10,14 @@ The Agent2Query assets are used for testing the New Relic Browser Agent. This ac
1010
1111The action generates the following files in ` temp/agent-2-query/ ` :
1212
13- - ` released-config.js ` - Configuration for the released version
14- - ` latest-config.js ` - Configuration for the latest (dev) version
15- - ` released.html ` - HTML test page for released version
16- - ` latest.html ` - HTML test page for latest version
13+ - ` latest-staging.html ` - HTML test page for the latest (dev) staging version
14+ - ` latest-staging-config.js ` - Configuration for the latest staging version
15+ - ` latest-us-prod.html ` - HTML test page for the latest US production version
16+ - ` latest-us-prod-config.js ` - Configuration for the latest US production version
17+ - ` released-staging.html ` - HTML test page for the released staging version
18+ - ` released-staging-config.js ` - Configuration for the released staging version
19+ - ` released-us-prod.html ` - HTML test page for the released US production version
20+ - ` released-us-prod-config.js ` - Configuration for the released US production version
1721- ` events.js ` - Event generation script
1822- ` square.png ` - Static image asset (copied from source)
1923
@@ -25,28 +29,36 @@ See [this diagram](https://whimsical.com/6VcSPKQ9PqAQmWgnwM37cN) for information
2529- name : Build Agent2Query assets
2630 uses : ./.github/actions/build-agent2query
2731 with :
28- released_license_key : ${{ secrets.A2Q_RELEASED_LICENSE_KEY }}
29- latest_license_key : ${{ secrets.A2Q_LATEST_LICENSE_KEY }}
32+ latest_staging_license_key : ${{ secrets.A2Q_LATEST_STAGING_LICENSE_KEY }}
33+ latest_us_prod_license_key : ${{ secrets.A2Q_LATEST_US_PROD_LICENSE_KEY }}
34+ released_staging_license_key : ${{ secrets.A2Q_RELEASED_STAGING_LICENSE_KEY }}
35+ released_us_prod_license_key : ${{ secrets.A2Q_RELEASED_US_PROD_LICENSE_KEY }}
3036` ` `
3137
3238## Inputs
3339
34- - ` released_license_key` (required): License key for the released version
35- - `latest_license_key` (required) : License key for the latest version
40+ - ` latest_staging_license_key` (required): License key for the latest staging version
41+ - `latest_us_prod_license_key` (required) : License key for the latest US production version
42+ - `released_staging_license_key` (required) : License key for the released staging version
43+ - `released_us_prod_license_key` (required) : License key for the released US production version
3644
3745# # Required GitHub Secrets
3846
3947The following secrets must be configured in the repository :
4048
41- - ` A2Q_RELEASED_LICENSE_KEY` - New Relic license key for released agent tests
42- - ` A2Q_LATEST_LICENSE_KEY` - New Relic license key for latest agent tests
49+ - ` A2Q_LATEST_STAGING_LICENSE_KEY` - New Relic license key for latest staging agent tests
50+ - ` A2Q_LATEST_US_PROD_LICENSE_KEY` - New Relic license key for latest US production agent tests
51+ - ` A2Q_RELEASED_STAGING_LICENSE_KEY` - New Relic license key for released staging agent tests
52+ - ` A2Q_RELEASED_US_PROD_LICENSE_KEY` - New Relic license key for released US production agent tests
4353
4454# # Template Files
4555
4656Templates are located in `templates/` directory and use Handlebars syntax. The templates receive :
4757
48- - ` releasedLicenseKey` - The released version license key
49- - ` latestLicenseKey` - The latest version license key
58+ - ` latestStagingLicenseKey` - The latest staging version license key
59+ - ` latestUsProdLicenseKey` - The latest US production version license key
60+ - ` releasedStagingLicenseKey` - The released staging version license key
61+ - ` releasedUsProdLicenseKey` - The released US production version license key
5062
5163# # Output
5264
0 commit comments