@ibm-cloud/cd-tools 1.1.0 → 1.1.1
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.
- package/package.json +5 -3
- package/renovate.json +6 -0
- package/.github/workflows/release.yml +0 -35
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ibm-cloud/cd-tools",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Tools and utilities for the IBM Cloud Continuous Delivery service and resources",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
|
-
"url": "https://github.com/IBM/continuous-delivery-tools"
|
|
7
|
+
"url": "git+https://github.com/IBM/continuous-delivery-tools.git"
|
|
8
8
|
},
|
|
9
9
|
"keywords": [
|
|
10
10
|
"ibm"
|
|
@@ -24,6 +24,8 @@
|
|
|
24
24
|
"ora": "^9.0.0",
|
|
25
25
|
"strip-ansi": "^7.1.2"
|
|
26
26
|
},
|
|
27
|
-
"bin":
|
|
27
|
+
"bin": {
|
|
28
|
+
"cd-tools": "index.js"
|
|
29
|
+
},
|
|
28
30
|
"type": "module"
|
|
29
31
|
}
|
package/renovate.json
ADDED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
name: Release
|
|
2
|
-
on:
|
|
3
|
-
push:
|
|
4
|
-
branches:
|
|
5
|
-
- main
|
|
6
|
-
|
|
7
|
-
permissions:
|
|
8
|
-
contents: read # for checkout
|
|
9
|
-
|
|
10
|
-
jobs:
|
|
11
|
-
release:
|
|
12
|
-
name: Release
|
|
13
|
-
runs-on: ubuntu-latest
|
|
14
|
-
permissions:
|
|
15
|
-
contents: write # to publish GitHub releases
|
|
16
|
-
issues: write # to comment on released issues
|
|
17
|
-
pull-requests: write # to comment on released pull requests
|
|
18
|
-
steps:
|
|
19
|
-
- name: Checkout
|
|
20
|
-
uses: actions/checkout@v4
|
|
21
|
-
with:
|
|
22
|
-
fetch-depth: 0
|
|
23
|
-
- name: Setup Node.js
|
|
24
|
-
uses: actions/setup-node@v4
|
|
25
|
-
with:
|
|
26
|
-
node-version: "lts/*"
|
|
27
|
-
- name: Install dependencies
|
|
28
|
-
run: npm clean-install
|
|
29
|
-
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
|
|
30
|
-
run: npm audit signatures
|
|
31
|
-
- name: Release
|
|
32
|
-
env:
|
|
33
|
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
34
|
-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
35
|
-
run: npx semantic-release
|