Skip to content

Commit 6b1286a

Browse files
committed
fix(automation): build packages before publish and package.json versions sync
1 parent 95849ec commit 6b1286a

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,12 @@ jobs:
4444
- name: Install Dependencies
4545
run: yarn install
4646

47+
- name: Generate TypeScript declarations
48+
run: yarn tsc
49+
50+
- name: Build plugins
51+
run: yarn workspaces foreach --include 'plugins/*' run build
52+
4753
- name: Create Release Pull Request or Publish to npm
4854
id: changesets
4955
uses: changesets/action@v1

plugins/search-backend-module-stack-overflow-teams-collator/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stackoverflow/backstage-stack-overflow-teams-collator",
3-
"version": "1.5.1",
3+
"version": "1.6.3",
44
"description": "A module for the search backend that exports Stack Internal modules",
55
"backstage": {
66
"role": "backend-plugin-module",

plugins/stack-overflow-teams-backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stackoverflow/backstage-plugin-stack-overflow-teams-backend",
3-
"version": "1.5.1",
3+
"version": "1.6.3",
44
"main": "src/index.ts",
55
"types": "src/index.ts",
66
"license": "Apache-2.0",

plugins/stack-overflow-teams/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stackoverflow/backstage-plugin-stack-overflow-teams",
3-
"version": "1.6.2",
3+
"version": "1.6.3",
44
"main": "src/index.ts",
55
"types": "src/index.ts",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)