@backstage/plugin-scaffolder-backend-module-yeoman 0.2.12-next.2 → 0.2.12
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/CHANGELOG.md +20 -0
- package/README.md +3 -3
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend-module-yeoman
|
|
2
2
|
|
|
3
|
+
## 0.2.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 935b66a646: Change step output template examples to use square bracket syntax.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/plugin-scaffolder-backend@1.9.0
|
|
10
|
+
- @backstage/types@1.0.2
|
|
11
|
+
- @backstage/config@1.0.5
|
|
12
|
+
|
|
13
|
+
## 0.2.12-next.3
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- 935b66a646: Change step output template examples to use square bracket syntax.
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
- @backstage/plugin-scaffolder-backend@1.9.0-next.3
|
|
20
|
+
- @backstage/config@1.0.5-next.1
|
|
21
|
+
- @backstage/types@1.0.2-next.1
|
|
22
|
+
|
|
3
23
|
## 0.2.12-next.2
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -126,7 +126,7 @@ spec:
|
|
|
126
126
|
name: Register
|
|
127
127
|
action: catalog:register
|
|
128
128
|
input:
|
|
129
|
-
repoContentsUrl: ${{ steps
|
|
129
|
+
repoContentsUrl: ${{ steps['publish'].output.repoContentsUrl }}
|
|
130
130
|
catalogInfoPath: '/catalog-info.yaml'
|
|
131
131
|
|
|
132
132
|
- name: Results
|
|
@@ -138,10 +138,10 @@ spec:
|
|
|
138
138
|
output:
|
|
139
139
|
links:
|
|
140
140
|
- title: Repository
|
|
141
|
-
url: ${{ steps
|
|
141
|
+
url: ${{ steps['publish'].output.remoteUrl }}
|
|
142
142
|
- title: Open in catalog
|
|
143
143
|
icon: catalog
|
|
144
|
-
entityRef: ${{ steps
|
|
144
|
+
entityRef: ${{ steps['register'].output.entityRef }}
|
|
145
145
|
```
|
|
146
146
|
|
|
147
147
|
You can also visit the `/create/actions` route in your Backstage application to find out more about the parameters this action accepts when it's installed to configure how you like.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-backend-module-yeoman",
|
|
3
|
-
"version": "0.2.12
|
|
3
|
+
"version": "0.2.12",
|
|
4
4
|
"main": "dist/index.cjs.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -22,15 +22,15 @@
|
|
|
22
22
|
"clean": "backstage-cli package clean"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@backstage/config": "^1.0.5
|
|
26
|
-
"@backstage/plugin-scaffolder-backend": "^1.9.0
|
|
27
|
-
"@backstage/types": "^1.0.2
|
|
25
|
+
"@backstage/config": "^1.0.5",
|
|
26
|
+
"@backstage/plugin-scaffolder-backend": "^1.9.0",
|
|
27
|
+
"@backstage/types": "^1.0.2",
|
|
28
28
|
"winston": "^3.2.1",
|
|
29
29
|
"yeoman-environment": "^3.9.1"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@backstage/backend-common": "^0.17.0
|
|
33
|
-
"@backstage/cli": "^0.
|
|
32
|
+
"@backstage/backend-common": "^0.17.0",
|
|
33
|
+
"@backstage/cli": "^0.22.0"
|
|
34
34
|
},
|
|
35
35
|
"files": [
|
|
36
36
|
"dist"
|