diff options
author | Rob Mensching <rob@firegiant.com> | 2021-12-14 12:19:40 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-12-14 14:48:57 -0800 |
commit | 4dcbd404a65a836924509d14fc7febfd1227ec9b (patch) | |
tree | a52fac8c0f6acb2dda207eeb5fc91b5dcde51018 /.github | |
parent | 09aac160d5898d6b95cd1b43d2c5a62e085e6a17 (diff) | |
download | wix-4dcbd404a65a836924509d14fc7febfd1227ec9b.tar.gz wix-4dcbd404a65a836924509d14fc7febfd1227ec9b.tar.bz2 wix-4dcbd404a65a836924509d14fc7febfd1227ec9b.zip |
Only run RuntimeTests in the `develop` and `master` branches
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f38fb5d7..379a18b4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml | |||
@@ -32,7 +32,7 @@ jobs: | |||
32 | shell: cmd | 32 | shell: cmd |
33 | run: ./src/build_official.cmd | 33 | run: ./src/build_official.cmd |
34 | env: | 34 | env: |
35 | RuntimeTestsEnabled: ${{ github.ref == 'refs/heads/master' }} | 35 | RuntimeTestsEnabled: ${{ github.ref == 'refs/heads/master' || github.ref == 'refs/heads/develop' }} |
36 | SigningUser: ${{ github.ref == 'refs/heads/master' && secrets.WIX_SIGNING_USER || '' }} | 36 | SigningUser: ${{ github.ref == 'refs/heads/master' && secrets.WIX_SIGNING_USER || '' }} |
37 | SigningSecret: ${{ github.ref == 'refs/heads/master' && secrets.WIX_SIGNING_SECRET || '' }} | 37 | SigningSecret: ${{ github.ref == 'refs/heads/master' && secrets.WIX_SIGNING_SECRET || '' }} |
38 | 38 | ||