Skip to content

Commit

Permalink
hotfix2
Browse files Browse the repository at this point in the history
  • Loading branch information
maurizio-cacace committed Apr 19, 2023
1 parent 1388c07 commit aa9edef
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ env:
jobs:
setup:
timeout-minutes: 20
if: github.event.pull_request.merged == true || $GITHUB_BRANCH == 'master' || $GITHUB_BRANCH == 'master-patch-*'
if: github.event.pull_request.merged == true || github.ref_name == 'master' || github.ref_name == 'master-patch-*'
name: "Setup"
runs-on: ubuntu-22.04
steps:
Expand All @@ -104,7 +104,7 @@ jobs:
release-demoshell:
needs: [setup]
timeout-minutes: 15
if: github.event.pull_request.merged == true || $GITHUB_BRANCH == 'master' || $GITHUB_BRANCH == 'master-patch-*'
if: github.event.pull_request.merged == true || github.ref_name == 'master' || github.ref_name == 'master-patch-*'
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
Expand All @@ -130,7 +130,7 @@ jobs:
release-storybook:
needs: [setup]
timeout-minutes: 15
if: github.event.pull_request.merged == true || $GITHUB_BRANCH == 'master' || $GITHUB_BRANCH == 'master-patch-*'
if: github.event.pull_request.merged == true || github.ref_name == 'master' || github.ref_name == 'master-patch-*'
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
Expand All @@ -157,7 +157,7 @@ jobs:
release-npm:
needs: [setup]
timeout-minutes: 15
if: github.event.pull_request.merged == true || $GITHUB_BRANCH == 'master' || $GITHUB_BRANCH == 'master-patch-*'
if: github.event.pull_request.merged == true || github.ref_name == 'master' || github.ref_name == 'master-patch-*'
runs-on: ubuntu-22.04
permissions:
contents: read
Expand Down Expand Up @@ -215,7 +215,7 @@ jobs:
npm-check-bundle:
needs: [release-npm]
timeout-minutes: 15
if: github.event.pull_request.merged == true || $GITHUB_BRANCH == 'master' || $GITHUB_BRANCH == 'master-patch-*'
if: github.event.pull_request.merged == true || github.ref_name == 'master' || github.ref_name == 'master-patch-*'
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
Expand Down

0 comments on commit aa9edef

Please sign in to comment.