Skip to content

Commit

Permalink
fix: yarn package build
Browse files Browse the repository at this point in the history
Signed-off-by: Zoran Zorica <[email protected]>
  • Loading branch information
zzorica committed Sep 10, 2024
1 parent 1bfe210 commit 527b2e6
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ jobs:
- if: steps.changes.outputs.daytona == 'true' || steps.changes.outputs.daytona-web == 'true' || steps.changes.outputs.auth-backend-module-daytona-provider == 'true'
name: Install dependencies
run: yarn install
run: |
yarn
yarn tsc
yarn build:all
- if: steps.changes.outputs.daytona == 'true' || github.event_name == 'workflow_dispatch'
name: Publish @daytonaio/backstage-plugin-daytona
Expand Down
6 changes: 6 additions & 0 deletions plugins/auth-backend-module-daytona-provider/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @daytonaio/backstage-plugin-auth-backend-module-daytona-provider

## 0.1.4

### Patch Changes

- Bump patch version for yarn build fix

## 0.1.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion plugins/auth-backend-module-daytona-provider/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@daytonaio/backstage-plugin-auth-backend-module-daytona-provider",
"version": "0.1.3",
"version": "0.1.4",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
Expand Down
6 changes: 6 additions & 0 deletions plugins/daytona-web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @daytonaio/daytona-web

## 0.1.3

### Patch Changes

- Bump patch version for yarn build fix

## 0.1.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion plugins/daytona-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@daytonaio/daytona-web",
"version": "0.1.2",
"version": "0.1.3",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
Expand Down
6 changes: 6 additions & 0 deletions plugins/daytona/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @daytonaio/backstage-plugin-daytona

## 0.2.8

### Patch Changes

- Bump patch version for yarn build fix

## 0.2.7

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion plugins/daytona/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@daytonaio/backstage-plugin-daytona",
"version": "0.2.7",
"version": "0.2.8",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
Expand Down

0 comments on commit 527b2e6

Please sign in to comment.