diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index afc9d5c831f..cb681bdeac1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,5 @@ jobs: forge_version: 0.2.1 allure: - uses: input-output-hk/catalyst-voices/.github/workflows/generate-allure-report.yml@974-task-make-the-allure-report-workflow-run-after-the-normal-ci-run needs: ci -# with: -# forge_version: 0.2.1 + uses: input-output-hk/catalyst-voices/.github/workflows/generate-allure-report.yml@974-task-make-the-allure-report-workflow-run-after-the-normal-ci-run diff --git a/.github/workflows/generate-allure-report.yml b/.github/workflows/generate-allure-report.yml index e94f40a14ab..a990d608545 100644 --- a/.github/workflows/generate-allure-report.yml +++ b/.github/workflows/generate-allure-report.yml @@ -6,17 +6,6 @@ on: branches: "main" tags: ["*"] workflow_call: - inputs: - forge_version: - description: | - The version of the forge CLI to install (use 'local' for testing) - type: string - required: false - default: latest - secrets: - earthly_token: - description: Optional Earthly token used to login to Earthly cloud during local builds of Forge CLI - required: false permissions: contents: write @@ -44,36 +33,6 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Install Forge - uses: input-output-hk/catalyst-forge/actions/install@ci/v1.1.0 - if: ${{ inputs.forge_version != 'local' }} - with: - version: ${{ inputs.forge_version }} - - - name: Install Local Forge - uses: input-output-hk/catalyst-forge/actions/install-local@ci/v1.1.0 - if: ${{ inputs.forge_version == 'local' }} - with: - earthly_token: ${{ secrets.earthly_token }} - - - name: Check forge version - id: local - run: | - forge version - - if [[ "${{ inputs.forge_version }}" == "local" ]]; then - echo "skip=true" >> $GITHUB_OUTPUT - else - echo "skip=false" >> $GITHUB_OUTPUT - fi - - - name: Setup CI - uses: input-output-hk/catalyst-forge/actions/setup@ci/v1.1.0 - with: - skip_docker: 'true' - skip_github: 'true' - skip_earthly: ${{ steps.local.outputs.skip }} - - name: Get catalyst gateway unit test report uses: input-output-hk/catalyst-forge/.github/workflows/run.yml@ci/v1.1.0 if: always()