From 67bd2a3cf33ddb394add3d5b39b1da8afabf684f Mon Sep 17 00:00:00 2001 From: Mostafa Rashed <17770919+mrashed-dev@users.noreply.github.com> Date: Tue, 6 Feb 2024 01:38:37 +0400 Subject: [PATCH] scrub references to the beta --- .github/workflows/pull-reqeust.yml | 1 - .github/workflows/sdk-reference.yaml | 4 ++-- README.md | 6 +++--- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pull-reqeust.yml b/.github/workflows/pull-reqeust.yml index ef16c485..8337da4b 100644 --- a/.github/workflows/pull-reqeust.yml +++ b/.github/workflows/pull-reqeust.yml @@ -8,7 +8,6 @@ on: pull_request: branches: - main - - v7.0.0-beta jobs: checks: diff --git a/.github/workflows/sdk-reference.yaml b/.github/workflows/sdk-reference.yaml index 418c16c8..0a70a568 100644 --- a/.github/workflows/sdk-reference.yaml +++ b/.github/workflows/sdk-reference.yaml @@ -3,7 +3,7 @@ name: sdk-reference on: push: branches: - - v7.0.0-beta + - main pull_request: jobs: @@ -26,7 +26,7 @@ jobs: run: echo "BRANCH=$(echo $GITHUB_REF | cut -d'/' -f 3)" >> $GITHUB_ENV - name: Set env CLOUDFLARE_BRANCH run: | - if [[ $BRANCH == 'v7.0.0-beta' && $GITHUB_EVENT_NAME == 'push' ]]; then + if [[ $BRANCH == 'main' && $GITHUB_EVENT_NAME == 'push' ]]; then echo "CLOUDFLARE_BRANCH=main" >> "$GITHUB_ENV" else echo "CLOUDFLARE_BRANCH=$BRANCH" >> "$GITHUB_ENV" diff --git a/README.md b/README.md index 93c1f24f..42e3fd74 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,8 @@ # Nylas Node.js SDK -[![npm](https://img.shields.io/npm/v/nylas%2Fbeta?label=npm%40beta) -](https://www.npmjs.com/package/nylas/v/beta@) +[![npm](https://img.shields.io/npm/v/nylas) +](https://www.npmjs.com/package/nylas) [![codecov](https://codecov.io/gh/nylas/nylas-nodejs/branch/main/graph/badge.svg?token=94IMGU4F09)](https://codecov.io/gh/nylas/nylas-nodejs) This is the GitHub repository for the Nylas Node SDK. This repo is primarily for anyone who wants to make contributions to the SDK, or install it from source. If you are looking to use Node to access the Nylas Email, Calendar, or Contacts API you should refer to our official [Node SDK Quickstart Guide](https://developer.nylas.com/docs/developer-tools/sdk/node-sdk/). @@ -30,7 +30,7 @@ Here are some resources to help you get started: To run the Nylas Node SDK, first install [Node](https://nodejs.org/en/download/) and [npm](https://www.npmjs.com/get-npm) on your machine. Then, head to the nearest command line and run the following: -`npm install nylas@beta` +`npm install nylas` Alternatively, you can use [Yarn](https://yarnpkg.com/en/) to install the Nylas Node SDK by running the `yarn add nylas` command.