@shakerquiz/contracts 0.0.3 → 0.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.
|
@@ -15,17 +15,15 @@ jobs:
|
|
|
15
15
|
runs-on: ubuntu-latest
|
|
16
16
|
if: github.event.pull_request.merged == true
|
|
17
17
|
steps:
|
|
18
|
-
- uses: actions/checkout@
|
|
18
|
+
- uses: actions/checkout@v5
|
|
19
19
|
with:
|
|
20
20
|
fetch-depth: 0
|
|
21
|
-
- uses: actions/setup-node@
|
|
21
|
+
- uses: actions/setup-node@v6
|
|
22
22
|
with:
|
|
23
23
|
node-version: '20'
|
|
24
|
-
|
|
24
|
+
- run: npm install -g npm@latest
|
|
25
25
|
- run: git config user.name "github-actions[bot]"
|
|
26
26
|
- run: git config user.email "github-actions[bot]@users.noreply.github.com"
|
|
27
|
-
- name: Update npm
|
|
28
|
-
run: npm install -g npm@latest
|
|
29
27
|
- run: npm version patch
|
|
30
28
|
- run: npm ci
|
|
31
29
|
- run: npm publish
|