Skip to content

Commit

Permalink
ci(): fix outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
Skraye committed Feb 13, 2025
1 parent b8d0ae3 commit f8d8e09
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions .github/workflows/workflow-build-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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

0 comments on commit f8d8e09

Please sign in to comment.