diff --git a/.github/workflows/test-oblt-cli-cluster-create-custom.yml b/.github/workflows/test-oblt-cli-cluster-create-custom.yml index bb3ab06..c7c7353 100644 --- a/.github/workflows/test-oblt-cli-cluster-create-custom.yml +++ b/.github/workflows/test-oblt-cli-cluster-create-custom.yml @@ -22,6 +22,7 @@ jobs: needs: - no-gitops - gitops + - multiline runs-on: ubuntu-latest steps: - id: check @@ -57,3 +58,22 @@ jobs: gitops: true dry-run: ${{ github.event.inputs.dry-run != '' && github.event.inputs.dry-run || true }} parameters: '{"RemoteClusterName":"release-oblt","StackVersion":"8.7.0","KibanaDockerImage":"docker.elastic.co/observability-ci/kibana-cloud:8.7.0-SNAPSHOT"}' + + multiline: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: elastic/oblt-actions/git/setup@v1 + - uses: ./oblt-cli/cluster-create-custom + with: + github-token: ${{ secrets.OBLT_CLI_GITHUB_TOKEN }} + template: 'deploy-kibana' + cluster-name-prefix: 'testgithubaction' + gitops: true + dry-run: true + parameters: | + { + "RemoteClusterName": "release-oblt", + "StackVersion": "8.7.0", + "KibanaDockerImage": "docker.elastic.co/observability-ci/kibana-cloud:8.7.0-SNAPSHOT" + } diff --git a/oblt-cli/cluster-create-custom/action.yml b/oblt-cli/cluster-create-custom/action.yml index b1f929a..9176f4c 100644 --- a/oblt-cli/cluster-create-custom/action.yml +++ b/oblt-cli/cluster-create-custom/action.yml @@ -97,7 +97,6 @@ runs: core.setOutput('SKIP_RANDOM_NAME', '--skip-random-name') } - - uses: elastic/oblt-actions/oblt-cli/setup@v1.8.1 with: github-token: ${{ inputs.github-token }}