Test Deprovision Environment #23
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test Deprovision Environment | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| server: | |
| type: string | |
| description: The url of the Octopus Instance. Will default to repository variable TEST_INSTANCE_URL if not supplied. | |
| service_account_id: | |
| type: string | |
| description: The id of the service account to login for. Will default to repository variable TEST_INSTANCE_SERVICE_ACCOUNT_ID if not supplied. | |
| space: | |
| description: 'The name of the space containing the ephemeral environment. Will default to repository variable TEST_SPACE_NAME if not supplied.' | |
| # project: | |
| # description: 'The name of the project in which to create and remove the EE. Will default to repository variable TEST_PROJECT_NAME if not supplied.' | |
| name: | |
| description: 'The name of the ephemeral environment to deprovision.' | |
| required: true | |
| jobs: | |
| deprovision-environment: | |
| permissions: | |
| id-token: write # This is required for requesting the JWT | |
| contents: read # This is required for actions/checkout | |
| runs-on: ubuntu-latest | |
| name: Test Ephemeral Environment Deprovisioning | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Login to Octopus Deploy | |
| uses: OctopusDeploy/login@v1 | |
| with: | |
| server: ${{ inputs.server || vars.TEST_INSTANCE_URL }} | |
| service_account_id: ${{ inputs.service_account_id || vars.TEST_INSTANCE_SERVICE_ACCOUNT_ID }} | |
| ## TBC once the create action is published | |
| # - name: Create Ephemeral Environment | |
| # uses: OctopusDeploy/create-ephemeral-environment@v1 | |
| # with: | |
| # name: ${{ inputs.name }} | |
| # project: ${{ inputs.project || vars.TEST_PROJECT_NAME}} | |
| # space: ${{ inputs.space || vars.TEST_SPACE_NAME}} | |
| - name: Deprovision Ephemeral Environment | |
| id: self_test | |
| uses: ./ | |
| with: | |
| name: ${{ inputs.name }} | |
| space: ${{ inputs.space || vars.TEST_SPACE_NAME}} | |
| - name: Show test action output | |
| run: echo "${{ steps.self_test.outputs.deprovisioning_runbook_runs }}" |