Skip to content

Commit bae5f10

Browse files
committed
Changed from pyFAST to pyfast in workflow files
1 parent 6ed663b commit bae5f10

File tree

4 files changed

+20
-20
lines changed

4 files changed

+20
-20
lines changed

.github/workflows/CI-mac-arm64.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
uses: actions/upload-artifact@v4
9292
with:
9393
name: Python wheel
94-
path: ${{github.workspace}}/build/python/dist/pyFAST-*.whl
94+
path: ${{github.workspace}}/build/python/dist/pyfast-*.whl
9595
if-no-files-found: error
9696

9797
- name: Upload archive package to release
@@ -109,15 +109,15 @@ jobs:
109109
uses: svenstaro/upload-release-action@v2
110110
with:
111111
repo_token: ${{ secrets.GITHUB_TOKEN }}
112-
file: ${{github.workspace}}/build/python/dist/pyFAST-*.whl
112+
file: ${{github.workspace}}/build/python/dist/pyfast-*.whl
113113
file_glob: true
114114
tag: ${{ github.ref }}
115115
overwrite: true
116116

117117
- name: Upload Python wheel to PyPi
118118
if: ${{ github.event_name == 'release' && !contains(github.ref, 'rc') }}
119119
run: |
120-
twine upload --username __token__ --password ${{ secrets.PYPI_API_TOKEN }} ${{github.workspace}}/build/python/dist/pyFAST-*.whl
120+
twine upload --username __token__ --password ${{ secrets.PYPI_API_TOKEN }} ${{github.workspace}}/build/python/dist/pyfast-*.whl
121121
122122
test-python-wheel:
123123
name: Test Python Wheel
@@ -152,7 +152,7 @@ jobs:
152152
cd ${{github.workspace}}
153153
python -m venv venv # Get error if not using virtual environment for some reason
154154
source venv/bin/activate
155-
python -m pip install --prefer-binary ${{github.workspace}}/download/pyFAST-*.whl
155+
python -m pip install --prefer-binary ${{github.workspace}}/download/pyfast-*.whl
156156
- name: Import FAST with Python
157157
run: |
158158
cd ${{github.workspace}}
@@ -212,7 +212,7 @@ jobs:
212212
# virtualenv -p python3 venv
213213
# source venv/bin/activate
214214
# pip3 install pytest
215-
# pip3 install ${{github.workspace}}/download/pyFAST-*.whl
215+
# pip3 install ${{github.workspace}}/download/pyfast-*.whl
216216
# - name: Run tests
217217
# run: |
218218
# cd ${{github.workspace}}/tmp/

.github/workflows/CI-mac-x86_64.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
uses: actions/upload-artifact@v4
8888
with:
8989
name: Python wheel
90-
path: ${{github.workspace}}/build/python/dist/pyFAST-*.whl
90+
path: ${{github.workspace}}/build/python/dist/pyfast-*.whl
9191
if-no-files-found: error
9292

9393
- name: Upload archive package to release
@@ -105,15 +105,15 @@ jobs:
105105
uses: svenstaro/upload-release-action@v2
106106
with:
107107
repo_token: ${{ secrets.GITHUB_TOKEN }}
108-
file: ${{github.workspace}}/build/python/dist/pyFAST-*.whl
108+
file: ${{github.workspace}}/build/python/dist/pyfast-*.whl
109109
file_glob: true
110110
tag: ${{ github.ref }}
111111
overwrite: true
112112

113113
- name: Upload Python wheel to PyPi
114114
if: ${{ github.event_name == 'release' && !contains(github.ref, 'rc') }}
115115
run: |
116-
twine upload --username __token__ --password ${{ secrets.PYPI_API_TOKEN }} ${{github.workspace}}/build/python/dist/pyFAST-*.whl
116+
twine upload --username __token__ --password ${{ secrets.PYPI_API_TOKEN }} ${{github.workspace}}/build/python/dist/pyfast-*.whl
117117
118118
test-python-wheel:
119119
name: Test Python Wheel
@@ -145,7 +145,7 @@ jobs:
145145
cd ${{github.workspace}}
146146
python -m venv venv # Get error if not using virtual environment for some reason
147147
source venv/bin/activate
148-
python -m pip install ${{github.workspace}}/download/pyFAST-*.whl
148+
python -m pip install ${{github.workspace}}/download/pyfast-*.whl
149149
- name: Import FAST with Python
150150
run: |
151151
cd ${{github.workspace}}
@@ -184,7 +184,7 @@ jobs:
184184
cd ${{github.workspace}}
185185
python -m venv venv # Get error if not using virtual environment for some reason
186186
source venv/bin/activate
187-
python -m pip install ${{github.workspace}}/download/pyFAST-*.whl numpy pytest
187+
python -m pip install ${{github.workspace}}/download/pyfast-*.whl numpy pytest
188188
- name: Cache test data
189189
id: cache-test-dataset
190190
uses: actions/cache@v4

.github/workflows/CI-ubuntu.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
echo "===========> Build Python Wheel"
103103
104104
cmake --build build --config ${{env.BUILD_TYPE}} --target python-wheel -j 4
105-
cp build/python/dist/pyFAST-*.whl build/
105+
cp build/python/dist/pyfast-*.whl build/
106106
107107
echo "===========> Free some space"
108108
@@ -151,7 +151,7 @@ jobs:
151151
uses: actions/upload-artifact@v4
152152
with:
153153
name: Python wheel
154-
path: ${{github.workspace}}/build/pyFAST-*.whl
154+
path: ${{github.workspace}}/build/pyfast-*.whl
155155
if-no-files-found: error
156156

157157
- name: Upload Debian package to release
@@ -179,7 +179,7 @@ jobs:
179179
uses: svenstaro/upload-release-action@2.7.0
180180
with:
181181
repo_token: ${{ secrets.GITHUB_TOKEN }}
182-
file: ${{github.workspace}}/build/pyFAST-*.whl
182+
file: ${{github.workspace}}/build/pyfast-*.whl
183183
file_glob: true
184184
tag: ${{ github.ref }}
185185
overwrite: true
@@ -188,7 +188,7 @@ jobs:
188188
if: ${{ github.event_name == 'release' && !contains(github.ref, 'rc') }}
189189
run: |
190190
pip3 install twine
191-
twine upload --username __token__ --password ${{ secrets.PYPI_API_TOKEN }} ${{github.workspace}}/build/pyFAST-*.whl
191+
twine upload --username __token__ --password ${{ secrets.PYPI_API_TOKEN }} ${{github.workspace}}/build/pyfast-*.whl
192192
193193
test-python-wheel:
194194
name: Test Python Wheel
@@ -217,7 +217,7 @@ jobs:
217217
- name: Install wheel
218218
run: |
219219
cd ${{github.workspace}}
220-
python -m pip install ${{github.workspace}}/download/pyFAST-*.whl
220+
python -m pip install ${{github.workspace}}/download/pyfast-*.whl
221221
- name: Import FAST with Python
222222
run: |
223223
cd ${{github.workspace}}
@@ -251,7 +251,7 @@ jobs:
251251
python3 -c "import sys; print(sys.version)"
252252
# Install wheel
253253
cd ${{github.workspace}}
254-
pip3 install ${{github.workspace}}/download/pyFAST-*.whl
254+
pip3 install ${{github.workspace}}/download/pyfast-*.whl
255255
# Import FAST with Python
256256
cd ${{github.workspace}}
257257
python3 -c "import fast"
@@ -321,7 +321,7 @@ jobs:
321321
virtualenv -p python3 venv
322322
source venv/bin/activate
323323
pip3 install pytest numpy
324-
pip3 install ${{github.workspace}}/download/pyFAST-*.whl
324+
pip3 install ${{github.workspace}}/download/pyfast-*.whl
325325
- name: Cache test data
326326
id: cache-test-dataset
327327
uses: actions/cache@v4

.github/workflows/CI-windows.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ jobs:
180180
uses: actions/upload-artifact@v4
181181
with:
182182
name: Python wheel
183-
path: ${{github.workspace}}/build/python/dist/pyFAST-*.whl
183+
path: ${{github.workspace}}/build/python/dist/pyfast-*.whl
184184
if-no-files-found: error
185185

186186
- name: Upload Windows installer to release
@@ -208,7 +208,7 @@ jobs:
208208
uses: svenstaro/upload-release-action@v2
209209
with:
210210
repo_token: ${{ secrets.GITHUB_TOKEN }}
211-
file: ${{github.workspace}}/build/python/dist/pyFAST-*.whl
211+
file: ${{github.workspace}}/build/python/dist/pyfast-*.whl
212212
file_glob: true
213213
tag: ${{ github.ref }}
214214
overwrite: true
@@ -217,7 +217,7 @@ jobs:
217217
- name: Upload Python wheel to PyPi
218218
if: ${{ github.event_name == 'release' && !contains(github.ref, 'rc') }}
219219
run: |
220-
twine upload --username __token__ --password ${{ secrets.PYPI_API_TOKEN }} ${{github.workspace}}/build/python/dist/pyFAST-*.whl
220+
twine upload --username __token__ --password ${{ secrets.PYPI_API_TOKEN }} ${{github.workspace}}/build/python/dist/pyfast-*.whl
221221
222222
test-python-wheel:
223223
name: Test Python Wheel

0 commit comments

Comments
 (0)