Skip to content

Commit f8c9a1a

Browse files
authored
Merge pull request #71 from MDAnalysis/fix-deploy
fix syntax error in deploy.yaml
2 parents 21b15e1 + 409e0e9 commit f8c9a1a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
id-token: write
1818
if: |
1919
github.repository == 'MDAnalysis/MDAnalysisData' &&
20-
(github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
20+
(github.event_name == 'push' && startsWith(github.ref, 'refs/tags/'))
2121
name: Build, upload and test pure Python wheels to TestPypi
2222
runs-on: ubuntu-latest
2323

.github/workflows/gh-ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ jobs:
6767
uses: codecov/codecov-action@v2
6868
with:
6969
name: codecov-${{ matrix.os }}-py${{ matrix.python-version }}
70+
token: ${{ secrets.CODECOV_TOKEN }}
7071
file: ./coverage.xml
7172
fail_ci_if_error: True
7273
verbose: True

0 commit comments

Comments
 (0)