Skip to content

Commit

Permalink
Test [PATCH]
Browse files Browse the repository at this point in the history
  • Loading branch information
onuratakan committed Feb 20, 2024
1 parent e9ae482 commit 0ec034f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/after_push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
patch:
needs: select_type
runs-on: ubuntu-latest
if: needs.select_type.outputs.type == 'PATCH'
if: ${{ needs.select_type.outputs.release_type }} == 'PATCH'
steps:

- name: Checkout Repository
Expand All @@ -78,7 +78,7 @@ jobs:
minor:
needs: select_type
runs-on: ubuntu-latest
if: needs.select_type.outputs.type == 'MINOR'
if: ${{ needs.select_type.outputs.release_type }} == 'MINOR'
steps:

- name: Checkout Repository
Expand All @@ -103,7 +103,7 @@ jobs:
major:
needs: select_type
runs-on: ubuntu-latest
if: needs.select_type.outputs.type == 'MAJOR'
if: ${{ needs.select_type.outputs.release_type }} == 'MAJOR'
steps:

- name: Checkout Repository
Expand Down

0 comments on commit 0ec034f

Please sign in to comment.