diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index c6c71e3..1254158 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -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 }} @@ -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 @@ -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 diff --git a/npm/darwin-arm64/package.json b/npm/darwin-arm64/package.json index 82caead..7312f2a 100644 --- a/npm/darwin-arm64/package.json +++ b/npm/darwin-arm64/package.json @@ -1,6 +1,6 @@ { "name": "@replit/ruspty-darwin-arm64", - "version": "3.0.3", + "version": "3.0.4", "os": [ "darwin" ], diff --git a/npm/darwin-x64/package.json b/npm/darwin-x64/package.json index e86e054..b1a7a08 100644 --- a/npm/darwin-x64/package.json +++ b/npm/darwin-x64/package.json @@ -1,6 +1,6 @@ { "name": "@replit/ruspty-darwin-x64", - "version": "3.0.3", + "version": "3.0.4", "os": [ "darwin" ], diff --git a/npm/linux-x64-gnu/package.json b/npm/linux-x64-gnu/package.json index 43229bb..f07310a 100644 --- a/npm/linux-x64-gnu/package.json +++ b/npm/linux-x64-gnu/package.json @@ -1,6 +1,6 @@ { "name": "@replit/ruspty-linux-x64-gnu", - "version": "3.0.3", + "version": "3.0.4", "os": [ "linux" ], diff --git a/package-lock.json b/package-lock.json index ec224b6..2cab91f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@replit/ruspty", - "version": "3.0.3", + "version": "3.0.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@replit/ruspty", - "version": "3.0.3", + "version": "3.0.4", "license": "MIT", "devDependencies": { "@napi-rs/cli": "^2.18.2", diff --git a/package.json b/package.json index 7e92196..0445d5e 100644 --- a/package.json +++ b/package.json @@ -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 ",