Skip to content

Commit

Permalink
scrub references to the beta
Browse files Browse the repository at this point in the history
  • Loading branch information
mrashed-dev committed Feb 5, 2024
1 parent b2eb5fd commit 67bd2a3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/pull-reqeust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ on:
pull_request:
branches:
- main
- v7.0.0-beta

jobs:
checks:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sdk-reference.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: sdk-reference
on:
push:
branches:
- v7.0.0-beta
- main
pull_request:

jobs:
Expand All @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/).
Expand All @@ -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.

Expand Down

0 comments on commit 67bd2a3

Please sign in to comment.