Skip to content

Commit 0577963

Browse files
authored
Refresh pypy release automation. (#62)
1 parent 94f31e8 commit 0577963

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/publish.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ jobs:
2323
build-artifacts:
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v4
2727
- name: Set up Python
2828
uses: actions/setup-python@v2.3.1
2929
with:
30-
python-version: 3.9
30+
python-version: 3.11
3131

3232
- name: Install dependencies
3333
run: |
@@ -43,7 +43,7 @@ jobs:
4343
run: |
4444
python -m twine check dist/*
4545
pwd
46-
- uses: actions/upload-artifact@v2
46+
- uses: actions/upload-artifact@v4
4747
with:
4848
name: releases
4949
path: dist
@@ -55,8 +55,8 @@ jobs:
5555
- uses: actions/setup-python@v2.3.1
5656
name: Install Python
5757
with:
58-
python-version: 3.9
59-
- uses: actions/download-artifact@v2
58+
python-version: 3.11
59+
- uses: actions/download-artifact@v4
6060
with:
6161
name: releases
6262
path: dist
@@ -79,13 +79,13 @@ jobs:
7979
sleep 3
8080
python -m pip install --upgrade pip
8181
python -m pip install --extra-index-url https://test.pypi.org/simple --upgrade de
82-
python -c "import qarray; print(qarray.__version__)"
82+
python -c "import xarray_sql; print(xarray_sql.__version__)"
8383
upload-to-pypi:
8484
needs: test-built-dist
8585
if: github.event_name == 'release'
8686
runs-on: ubuntu-latest
8787
steps:
88-
- uses: actions/download-artifact@v2
88+
- uses: actions/download-artifact@v4
8989
with:
9090
name: releases
9191
path: dist

0 commit comments

Comments
 (0)