Skip to content

Commit 5037dbf

Browse files
authored
build: Release (parse-community#83)
2 parents 0831d86 + 8db077a commit 5037dbf

File tree

9 files changed

+3490
-1875
lines changed

9 files changed

+3490
-1875
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: 1 addition & 1 deletion
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)

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

changelogs/CHANGELOG_beta.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# [3.0.0-beta.1](https://github.com/parse-community/parse-server-api-mail-adapter/compare/2.1.0-beta.2...3.0.0-beta.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-beta.2](https://github.com/parse-community/parse-server-api-mail-adapter/compare/2.1.0-beta.1...2.1.0-beta.2) (2023-01-24)
214

315

0 commit comments

Comments
 (0)