Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
BDonnot committed Sep 30, 2024
1 parent 77c5594 commit 7157d82
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
container: quay.io/pypa/manylinux2014_x86_64
env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
GHA_USE_NODE_20: false
strategy:
matrix:
python:
Expand Down Expand Up @@ -46,7 +47,7 @@ jobs:
steps:

- name: Checkout sources
uses: actions/checkout@v1
uses: actions/checkout@v3
with:
submodules: true

Expand Down Expand Up @@ -159,13 +160,13 @@ jobs:
run: python setup.py sdist

- name: Upload wheel
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: grid2op-wheel-${{ matrix.config.name }}-${{ matrix.python.name }}
path: dist/*.whl

- name: Upload source archive
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: matrix.config.name == 'darwin' && matrix.python.name == 'cp310'
with:
name: grid2op-sources
Expand Down Expand Up @@ -238,12 +239,12 @@ jobs:

steps:
- name: Download wheels
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
path: download

- name: Upload wheels
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: grid2op-wheels
path: |
Expand Down

0 comments on commit 7157d82

Please sign in to comment.