Skip to content

Commit

Permalink
Fix upload from release branch (#596)
Browse files Browse the repository at this point in the history
  • Loading branch information
Elena Totmenina authored Oct 21, 2021
1 parent 0b212b4 commit b15a202
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/conda-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ jobs:
upload_linux:
needs: test_linux
if: ${{ github.ref == 'refs/heads/main' }}
if: ${{ github.ref }} == 'refs/heads/main' || ${{ github.ref }} == 'refs/heads/release*'
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -278,7 +278,7 @@ jobs:
upload_windows:
needs: test_windows
if: ${{ github.ref == 'refs/heads/main' || github.ref == 'refs/heads/release*' }}
if: ${{ github.ref }} == 'refs/heads/main' || ${{ github.ref }} == 'refs/heads/release*'
runs-on: windows-latest
strategy:
matrix:
Expand Down

0 comments on commit b15a202

Please sign in to comment.