Skip to content

Commit d8588b8

Browse files
authored
build: Release beta (#82)
2 parents fc070da + bf93530 commit d8588b8

File tree

8 files changed

+3479
-1876
lines changed

8 files changed

+3479
-1876
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@ jobs:
5353
strategy:
5454
matrix:
5555
include:
56-
- name: Node 12
57-
NODE_VERSION: 12
5856
- name: Node 14
5957
NODE_VERSION: 14
6058
- name: Node 16
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: release-automated
2+
on:
3+
push:
4+
branches: [ release, alpha, beta, next-major, 'release-[0-9]+.x.x' ]
5+
jobs:
6+
release:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v3
10+
with:
11+
persist-credentials: false
12+
- uses: actions/setup-node@v3
13+
with:
14+
node-version: 18.1.0
15+
registry-url: https://registry.npmjs.org/
16+
- name: Cache Node.js modules
17+
uses: actions/cache@v2
18+
with:
19+
path: ~/.npm
20+
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
21+
restore-keys: |
22+
${{ runner.os }}-node-
23+
- run: npm ci
24+
- run: npx semantic-release
25+
env:
26+
GH_TOKEN: ${{ secrets.RELEASE_GITHUB_TOKEN }}
27+
GITHUB_TOKEN: ${{ secrets.RELEASE_GITHUB_TOKEN }}
28+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/release.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Coverage](https://codecov.io/gh/parse-community/parse-server-api-mail-adapter/branch/alpha/graph/badge.svg)](https://codecov.io/gh/parse-community/parse-server-api-mail-adapter)
66
[![auto-release](https://img.shields.io/badge/%F0%9F%9A%80-auto--release-9e34eb.svg)](https://github.com/parse-community/parse-dashboard/releases)
77

8-
[![Node Version](https://img.shields.io/badge/nodejs-12,_14,_16,_18-green.svg?logo=node.js&style=flat)](https://nodejs.org)
8+
[![Node Version](https://img.shields.io/badge/nodejs-14,_16,_18-green.svg?logo=node.js&style=flat)](https://nodejs.org)
99

1010
[![dependency up-to-date](https://img.shields.io/librariesio/release/npm/parse-server-api-mail-adapter)](https://libraries.io/npm/parse-server-api-mail-adapter)
1111
[![weekly downloads](https://img.shields.io/npm/dw/parse-server-api-mail-adapter)](https://www.npmjs.com/package/parse-server-api-mail-adapter)
@@ -20,7 +20,7 @@ The Parse Server API Mail Adapter enables Parse Server to send emails using any
2020

2121
## Transfer <!-- omit in toc -->
2222

23-
ℹ️ This repository has been tranferred to the Parse Platform Organization on May 15, 2022. Please update any links that you may have to this repository, for example if you cloned or forked this repository and maintain a remote link to this orginal repository, or if you are referencing a GitHub commit directly as your dependency.
23+
ℹ️ This repository has been transferred to the Parse Platform Organization on May 15, 2022. Please update any links that you may have to this repository, for example if you cloned or forked this repository and maintain a remote link to this original repository, or if you are referencing a GitHub commit directly as your dependency.
2424

2525
---
2626

changelogs/CHANGELOG_alpha.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# [3.0.0-alpha.1](https://github.com/parse-community/parse-server-api-mail-adapter/compare/2.1.0-alpha.9...3.0.0-alpha.1) (2023-04-29)
2+
3+
4+
### Features
5+
6+
* Remove support for Node 12 ([#79](https://github.com/parse-community/parse-server-api-mail-adapter/issues/79)) ([3a480d9](https://github.com/parse-community/parse-server-api-mail-adapter/commit/3a480d98f58be723945cd78e3eaa18a2062af1ed))
7+
8+
9+
### BREAKING CHANGES
10+
11+
* Remove support for Node 12. ([3a480d9](3a480d9))
12+
113
# [2.1.0-alpha.9](https://github.com/parse-community/parse-server-api-mail-adapter/compare/2.1.0-alpha.8...2.1.0-alpha.9) (2022-09-15)
214

315

0 commit comments

Comments
 (0)