klaim 1.0.2 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -9,32 +9,27 @@ jobs:
|
|
|
9
9
|
steps:
|
|
10
10
|
- name: Checkout
|
|
11
11
|
uses: actions/checkout@v2
|
|
12
|
-
|
|
13
12
|
- name: Setup Bun
|
|
14
13
|
uses: oven-sh/setup-bun@v1
|
|
15
14
|
with:
|
|
16
15
|
bun-version: "latest"
|
|
17
|
-
|
|
18
16
|
- name: Install Dependencies
|
|
19
17
|
run: bun install
|
|
20
|
-
|
|
21
18
|
- name: Lint & Check
|
|
22
19
|
run: bun run lint
|
|
23
|
-
|
|
24
20
|
- name: Build
|
|
25
21
|
run: bun run build
|
|
26
|
-
|
|
27
22
|
- name: Initialize Git
|
|
28
23
|
run: |
|
|
29
24
|
git config --global user.email "antho.eclips@gmail.com"
|
|
30
25
|
git config --global user.name "Anthony Bellancourt"
|
|
31
|
-
|
|
32
26
|
- name: Configure NPM
|
|
33
|
-
run:
|
|
34
|
-
|
|
35
|
-
|
|
27
|
+
run: npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN
|
|
28
|
+
env:
|
|
29
|
+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
36
30
|
- name: Release
|
|
37
31
|
run: bun run release --ci
|
|
38
32
|
env:
|
|
39
33
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
40
34
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
35
|
+
|