From c534d3fafaa357b2c3df737673d0749a01f79222 Mon Sep 17 00:00:00 2001 From: mikhail-klimko Date: Thu, 21 Sep 2023 00:01:46 +0300 Subject: [PATCH] empty --- .github/workflows/codefresh-run-e2e.yaml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/codefresh-run-e2e.yaml b/.github/workflows/codefresh-run-e2e.yaml index 7f9f0a68c..bc87ef246 100644 --- a/.github/workflows/codefresh-run-e2e.yaml +++ b/.github/workflows/codefresh-run-e2e.yaml @@ -29,11 +29,15 @@ jobs: files: | graduated/codefresh-run/** + - id: setup-node + if: steps.changed-files.outputs.any_changed == 'true' + uses: actions/setup-node@v3 + with: + node-version: 18 + - id: codefresh-run if: steps.changed-files.outputs.any_changed == 'true' - uses: codefresh-io/codefresh-pipeline-runner@v5 - env: - PIPELINE_NAME: cli-v1-e2e/codefresh-run-step-e2e - TRIGGER_NAME: codefresh_run_step_dev - #CF_BRANCH : test-action #${{ github.ref_name }} - CF_API_KEY: ${{ secrets.CF_API_KEY }} + run: | + npm install -g codefresh + codefresh auth create-context --api-key ${{ secrets.CF_API_KEY }} + codefresh run cli-v1-e2e/codefresh-run-step-e2e -t codefresh_run_step_dev -b ${{ github.ref_name }}