diff --git a/.github/workflows/deploy-to-pantheon.yml b/.github/workflows/deploy-to-pantheon.yml index 27ec8d4..9c9d187 100644 --- a/.github/workflows/deploy-to-pantheon.yml +++ b/.github/workflows/deploy-to-pantheon.yml @@ -25,6 +25,16 @@ on: TARGET_ENV_URL: description: The URL of the target environment value: ${{ jobs.deploy_to_pantheon.outputs.TARGET_ENV_URL }} + TARGET_ENV: + description: The name of the target env + value: ${{ jobs.deploy_to_pantheon.outputs.TARGET_ENV }} + TARGET_TERMINUS_SITE_AND_ENV: + description: The site and env for accessing this Wordpress site via terminus, i.e. `terminus wp -- TARGET_TERMINUS_SITE_AND_ENV ` + value: ${{inputs.TERMINUS_SITE}}.${{ jobs.deploy_to_pantheon.outputs.TARGET_ENV }} + TARGET_TERMINUS_SITE: + description: The site for managing this Wordpress site via terminus, i.e. `terminus site:info TARGET_TERMINUS_SITE`. Just echos the TERMINUS_SITE passed into the workflow + value: ${{inputs.TERMINUS_SITE}} + concurrency: group: deploy-to-pantheon--${{ github.head_ref || github.ref_name }} cancel-in-progress: true