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