Skip to content

Commit

Permalink
CI: Fix nightly master condition
Browse files Browse the repository at this point in the history
  • Loading branch information
jschueller committed Sep 26, 2024
1 parent 8b4329e commit 779c958
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
miniforge-version: latest
- name: Upload
if: startsWith(github.ref, 'refs/master')
if: ${{ github.ref == 'refs/heads/master' }}
shell: bash -l {0}
run: |
conda install -y anaconda-client
Expand All @@ -36,7 +36,7 @@ jobs:
with:
miniforge-version: latest
- name: Upload
if: startsWith(github.ref, 'refs/master')
if: ${{ github.ref == 'refs/heads/master' }}
shell: bash -l {0}
run: |
conda install -y anaconda-client
Expand All @@ -54,7 +54,7 @@ jobs:
with:
miniforge-version: latest
- name: Upload
if: startsWith(github.ref, 'refs/master')
if: ${{ github.ref == 'refs/heads/master' }}
shell: bash -l {0}
run: |
conda install -y anaconda-client
Expand Down

0 comments on commit 779c958

Please sign in to comment.