Skip to content

Commit

Permalink
removed matrix from deploy node
Browse files Browse the repository at this point in the history
  • Loading branch information
tclose committed Nov 3, 2023
1 parent fff8e89 commit 3f08fcd
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/pythonpackage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -191,9 +191,6 @@ jobs:
deploy:
needs: [devcheck, test]
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11']
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -213,10 +210,10 @@ jobs:
git add -f pydra/tasks/freesurfer/auto/_version.py
git commit -am"added auto-generated version to make new tag for package version"
git tag ${TAG}post${POST}
- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
python-version: '3.11'
- name: Install build tools
run: python -m pip install build twine
- name: Strip auto package from gitignore so it is included in package
Expand Down

0 comments on commit 3f08fcd

Please sign in to comment.