Skip to content

Commit

Permalink
update release script
Browse files Browse the repository at this point in the history
  • Loading branch information
robsdavis committed Sep 4, 2024
1 parent daf3d3b commit e94396e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,20 +39,21 @@ jobs:

runs-on: ubuntu-latest
container:
image: amazonlinux:2 # Official Amazon Linux 2 image with yum
image: centos:stream8 # CentOS Stream 8 has a newer glibc version
steps:
- name: Install Node.js 20
run: |
dnf install -y curl
curl -sL https://rpm.nodesource.com/setup_20.x | bash -
yum install -y nodejs
dnf install -y nodejs
node -v
npm -v
- uses: actions/checkout@v3
with:
submodules: true
- name: Set target Python version PATH
run: |
echo "/opt/python/${{ matrix.python-version }}/bin" >> $GITHUB_PATH
echo "/opt/python/${{ matrix.python-version }}/bin" >> $GITHUB_PATH
- name: Build and publish
env:
TWINE_USERNAME: __token__
Expand Down

0 comments on commit e94396e

Please sign in to comment.