Skip to content

Commit

Permalink
[:init] Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
zero88 committed Jan 27, 2023
1 parent 297c37d commit 644e3d3
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
if: needs.context.outputs.shouldBuild == 'true'
uses: play-iot/gha-ci/.github/workflows/gradle-build.yml@main
with:
profile: 'all'
profile: 'ciBuild'
version: ${{ needs.context.outputs.version }}
semanticVersion: ${{ needs.context.outputs.semanticVersion }}
hashVersion: ${{ needs.context.outputs.commitId }}
Expand Down
14 changes: 14 additions & 0 deletions backend/domdom/src/main/java/cloud/playio/domdom/DomDom.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/*
* Copyright (c) 2023. https://playio.cloud/
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* All rights reserved.
*/

package cloud.playio.domdom;

public class DomDom {}
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@
"typescript" : "^4.5.2"
},
"scripts" : {
"build" : "lerna run build",
"clean" : "lerna run clean",
"lint" : "lerna run lint",
"build" : "CI=false lerna run build",
"clean" : "CI=false lerna run clean",
"lint" : "CI=false lerna run lint",
"test" : "lerna run test",
"typecheck" : "lerna run typecheck",
"typecheck" : "CI=false lerna run typecheck",
"app:start" : "yarn workspace @domdom/app start",
"es4x:start" : "yarn workspace @domdom/es4x start"
},
Expand Down

0 comments on commit 644e3d3

Please sign in to comment.