diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 68bb353d7..cd8c2caf9 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -23,13 +23,14 @@ jobs: - run: npm install -g npm - run: npm install - run: npm test - - run: npm publish --provenance --access public + - run: npm publish --provenance --access public --tag alpha env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - - run: | + - name: Publish version on GitHub + run: | version=$(jq -r .version package.json) gh release create \ - -n "[Changelog](https://www.elastic.co/guide/en/elasticsearch/client/javascript-api/$BRANCH_NAME/changelog-client.html)" \ + -n "This is a 9.0.0 pre-release alpha. Changes may not be stable." \ --target "$BRANCH_NAME" \ -t "v$version" \ "v$version" diff --git a/package.json b/package.json index 121639c39..68e183f6c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@elastic/elasticsearch", - "version": "8.16.0", - "versionCanary": "8.16.0-canary.0", + "version": "9.0.0-alpha.1", + "versionCanary": "9.0.0-canary.0", "description": "The official Elasticsearch client for Node.js", "main": "./index.js", "types": "index.d.ts",