Skip to content

Commit

Permalink
Merge pull request #12 from r-franzke/fix-ci
Browse files Browse the repository at this point in the history
fix: again...
  • Loading branch information
r-franzke authored Nov 28, 2022
2 parents dc695dd + 1e307f7 commit 131570f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,23 @@ on:

jobs:
generate-tag:
runs-on: ubuntu-latest
name: Production build of the Docker Image
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v3
id: semantic
with:
# You can select another working directory like a subdirectory for example.
working_directory: ./code
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

build-docker:
runs-on: ubuntu-latest
needs: generate-tag
name: Production build of the Docker Image
if: jobs.generate-tag.steps.semantic.new_release_published == 'true'
if: needs.semantic.new_release_published == 'true'
steps:
- uses: actions/checkout@v2
- name: Pull
Expand Down

0 comments on commit 131570f

Please sign in to comment.