Skip to content

Commit

Permalink
Merge pull request #15 from r-franzke/fix-ci
Browse files Browse the repository at this point in the history
fix: Just work...
  • Loading branch information
r-franzke authored Nov 28, 2022
2 parents d2f72c9 + 7e74fe5 commit 40b2afe
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 40b2afe

Please sign in to comment.