From f8d8e0998ca16198063bca44d44ebfbdcb70a79b Mon Sep 17 00:00:00 2001 From: YannC Date: Thu, 13 Feb 2025 10:47:58 +0100 Subject: [PATCH] ci(): fix outputs --- .github/workflows/workflow-build-artifacts.yml | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/.github/workflows/workflow-build-artifacts.yml b/.github/workflows/workflow-build-artifacts.yml index baa82b239a1..6afb6a1edf3 100644 --- a/.github/workflows/workflow-build-artifacts.yml +++ b/.github/workflows/workflow-build-artifacts.yml @@ -24,9 +24,9 @@ jobs: name: Build - Artifacts runs-on: ubuntu-latest outputs: - docker-tag: ${{ steps.set-outputs.outputs.docker-tag }} - docker-artifact-name: ${{ steps.set-outputs.outputs.docker-artifact-name }} - plugins: ${{ steps.set-outputs.outputs.plugins }} + docker-tag: ${{ steps.vars.outputs.tag }} + docker-artifact-name: ${{ steps.vars.outputs.artifact }} + plugins: ${{ steps.plugins.outputs.plugins }} env: PLUGIN_VERSION: ${{ github.event.inputs.plugin-version != null && github.event.inputs.plugin-version || 'LATEST' }} steps: @@ -145,11 +145,3 @@ jobs: with: name: ${{ steps.vars.outputs.artifact }} path: /tmp/${{ steps.vars.outputs.artifact }}.tar - - - name: Output - Set outputs - id: set-outputs - shell: bash - run: | - echo "docker-tag=${{ steps.vars.outputs.tag }}" >> GITHUB_OUTPUT - echo "docker-artifact-name=${{ steps.vars.outputs.artifact }}" >> GITHUB_OUTPUT - echo "plugins=${{ steps.plugins.outputs.plugins }}" >> GITHUB_OUTPUT \ No newline at end of file