Skip to content

Commit

Permalink
3.0.4 publish latest instead of next, use older ubuntu for glibc (#31)
Browse files Browse the repository at this point in the history
```
/lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found (required by /pid2/bundles/d4f5b5b5c707c5e680b5c056f84d46bc0d663df0/ruspty.linux-x64-gnu-TCJYG7MZ.node)
```

pain
  • Loading branch information
jackyzha0 authored Jun 11, 2024
1 parent 77c2705 commit d0d6ad0
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
target: x86_64-apple-darwin
- host: macos-latest
target: aarch64-apple-darwin
- host: ubuntu-latest
- host: ubuntu-22.04
target: x86_64-unknown-linux-gnu
name: Build and test on ${{ matrix.settings.target }}
runs-on: ${{ matrix.settings.host }}
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:

publish:
name: Publish
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: github.ref == 'refs/heads/main'
needs:
- build-test
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
if git log -1 --pretty=%B | grep "^[0-9]\+\.[0-9]\+\.[0-9]\+";
then
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
npm publish --tag next --access public
npm publish --access public
else
echo "Not a release, skipping publish"
fi
Expand Down
2 changes: 1 addition & 1 deletion npm/darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@replit/ruspty-darwin-arm64",
"version": "3.0.3",
"version": "3.0.4",
"os": [
"darwin"
],
Expand Down
2 changes: 1 addition & 1 deletion npm/darwin-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@replit/ruspty-darwin-x64",
"version": "3.0.3",
"version": "3.0.4",
"os": [
"darwin"
],
Expand Down
2 changes: 1 addition & 1 deletion npm/linux-x64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@replit/ruspty-linux-x64-gnu",
"version": "3.0.3",
"version": "3.0.4",
"os": [
"linux"
],
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@replit/ruspty",
"version": "3.0.3",
"version": "3.0.4",
"main": "dist/wrapper.js",
"types": "dist/wrapper.d.ts",
"author": "Szymon Kaliski <[email protected]>",
Expand Down

0 comments on commit d0d6ad0

Please sign in to comment.