Skip to content

Commit

Permalink
Merge pull request #1 from sbesson/github_workflow_nodejs20
Browse files Browse the repository at this point in the history
Update GitHub actions to work with Node.js 20
  • Loading branch information
chris-allan authored Mar 25, 2024
2 parents 789ece7 + 042b802 commit f6f969a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
with:
submodules: recursive
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Prepare build environment
Expand All @@ -38,9 +38,9 @@ jobs:
python setup.py build -j 6
python setup.py bdist_wheel
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: artifacts
name: artifacts-${{ matrix.python-version }}
path: zeroc-ice-3.6.5/dist/*.whl
if-no-files-found: error
release:
Expand All @@ -49,11 +49,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download artifacts from build
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
- name: List artifacts
run: ls -R
- name: Release
uses: softprops/action-gh-release@v1
with:
files: |
artifacts/*.whl
artifacts-*/*.whl

0 comments on commit f6f969a

Please sign in to comment.