Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
CIBW_BUILD: "${{ matrix.python }}-win_amd64"

- name: Store artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: my-artifact-${{ matrix.os }}-${{ matrix.python }}-${{ matrix.arch }}.whl
path: ./wheelhouse/*.whl
Expand All @@ -86,7 +86,7 @@ jobs:
pip install -U pip setuptools build
python -m build --sdist
- name: upload sdist
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: my-artifact-sdist
path: ./dist/*.tar.gz
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/conda_exchange_calendar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,19 @@ jobs:
conda-build --output-folder . --python ${{ matrix.python }} conda/exchange-calendars/

- name: store macos result
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ matrix.os == 'macos-latest' }}
with:
path: osx-64/*.tar.bz2

- name: store linux result
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ matrix.os == 'ubuntu-latest' }}
with:
path: linux-64/*.tar.bz2

- name: store windows result
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ matrix.os == 'windows-latest' }}
with:
path: win-64/*.tar.bz2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/conda_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
run: conda activate up

- name: store windows result
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ matrix.os == 'windows-latest' }}
with:
path: win-64/*.tar.bz2
Expand All @@ -71,7 +71,7 @@ jobs:
run: anaconda upload -l main -u ml4t win-64/*.tar.bz2

- name: store linux result
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ matrix.os == 'ubuntu-latest' }}
with:
path: linux-64/*.tar.bz2
Expand All @@ -81,7 +81,7 @@ jobs:
run: anaconda upload -l main -u ml4t linux-64/*.tar.bz2

- name: store macos result
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ matrix.os == 'macos-latest' }}
with:
path: osx-64/*.tar.bz2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/conda_talib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,19 +64,19 @@ jobs:
run: conda mambabuild --output-folder . --python ${{ matrix.python }} conda/ta-lib/

- name: store macos result
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ matrix.os == 'macos-latest' }}
with:
path: osx-64/*.tar.bz2

- name: store linux result
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ matrix.os == 'ubuntu-latest' }}
with:
path: linux-64/*.tar.bz2

- name: store windows result
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ matrix.os == 'windows-latest' }}
with:
path: win-64/*.tar.bz2
Expand Down