From 7e74fe5179608ef80003f017ab7ed3a05a357661 Mon Sep 17 00:00:00 2001 From: Robert Franzke Date: Mon, 28 Nov 2022 23:33:17 +0100 Subject: [PATCH] fix: Just work... --- .github/workflows/release.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3a37147..8d21b3d 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -8,7 +8,7 @@ on: jobs: generate-tag: runs-on: ubuntu-latest - name: Production build of the Docker Image + name: Generate new Tag steps: - name: Checkout uses: actions/checkout@v3 @@ -18,12 +18,14 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + outputs: + new_release_published: ${{ steps.semantic.outputs.new_release_published }} build-docker: runs-on: ubuntu-latest needs: generate-tag name: Production build of the Docker Image - if: needs.steps.semantic.outputs.new_release_published == 'true' + if: needs.generate-tag.outputs.new_release_published == 'true' steps: - uses: actions/checkout@v2 - name: Pull