Skip to content

Commit

Permalink
build: Run Zeus for release/ branches only (#2840)
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilogorek committed Aug 24, 2020
1 parent 991faca commit caff9e7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
name: BrowserStack
needs: job_build
runs-on: ubuntu-latest
if: "'refs/heads/master' == github.ref || startsWith(github.ref, 'refs/tags/')"
if: "github.ref == 'refs/heads/master'"
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
Expand Down Expand Up @@ -122,6 +122,7 @@ jobs:
name: Zeus
needs: job_build
runs-on: ubuntu-latest
if: "contains(github.ref, 'release/')"
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
Expand Down Expand Up @@ -157,6 +158,7 @@ jobs:
name: Artifacts Upload
needs: job_build
runs-on: ubuntu-latest
if: "contains(github.ref, 'release/')"
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
Expand Down

0 comments on commit caff9e7

Please sign in to comment.