Skip to content
This repository was archived by the owner on Apr 21, 2024. It is now read-only.

Commit e5b3006

Browse files
authored
Merge pull request #17 from Flow-Works/dev
[🪢] Merge `dev` into `master`
2 parents 8d1545a + 9c24fc1 commit e5b3006

File tree

7 files changed

+9574
-2134
lines changed

7 files changed

+9574
-2134
lines changed

.github/workflows/release.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Release
2+
on:
3+
push:
4+
branches: [master]
5+
6+
permissions:
7+
contents: read # for checkout
8+
9+
jobs:
10+
release:
11+
name: Release
12+
runs-on: ubuntu-latest
13+
permissions:
14+
contents: write # to be able to publish a GitHub release
15+
issues: write # to be able to comment on released issues
16+
pull-requests: write # to be able to comment on released pull requests
17+
id-token: write # to enable use of OIDC for npm provenance
18+
steps:
19+
- name: Checkout
20+
uses: actions/checkout@v3
21+
with:
22+
fetch-depth: 0
23+
token: ${{ secrets.PAT }}
24+
- name: Setup Node.js
25+
uses: actions/setup-node@v3
26+
with:
27+
node-version: "lts/*"
28+
- name: Install dependencies
29+
run: npm clean-install
30+
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
31+
run: npm audit signatures
32+
- name: Release
33+
env:
34+
GH_TOKEN: ${{ secrets.PAT }}
35+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36+
run: npx semantic-release

.releaserc

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"branches": ["master"],
3+
"plugins": [
4+
"@semantic-release/commit-analyzer",
5+
"@semantic-release/release-notes-generator",
6+
["@semantic-release/npm", {
7+
"npmPublish": false
8+
}],
9+
["@semantic-release/git", {
10+
"assets": ["package.json", "package-lock.json"],
11+
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
12+
}],
13+
"@semantic-release/github"
14+
]
15+
}

init.js

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

0 commit comments

Comments
 (0)