File tree Expand file tree Collapse file tree 1 file changed +20
-10
lines changed Expand file tree Collapse file tree 1 file changed +20
-10
lines changed Original file line number Diff line number Diff line change @@ -196,12 +196,17 @@ jobs:
196196 cache : ' yarn'
197197 cache-dependency-path : yarn.lock
198198
199- - name : Install dependencies and build bundle
199+ - name : Install dependencies
200+ run : yarn install --frozen-lockfile
201+
202+ - name : Configure
203+ run : yarn configure
204+
205+ - name : Build bundle
206+ id : build
200207 run : |
201- yarn install --frozen-lockfile
202- cd packages/cactus-plugin-satp-hermes
203- yarn run build
204- yarn run build:bundle
208+ yarn lerna run build:bundle --scope=@hyperledger/cactus-plugin-satp-hermes
209+ echo "success=true" >> "$GITHUB_OUTPUT"
205210
206211 - name : Set up Docker Buildx
207212 uses : docker/setup-buildx-action@v3
@@ -254,12 +259,17 @@ jobs:
254259 cache : ' yarn'
255260 cache-dependency-path : yarn.lock
256261
257- - name : Install dependencies and build bundle
262+ - name : Install dependencies
263+ run : yarn install --frozen-lockfile
264+
265+ - name : Configure
266+ run : yarn configure
267+
268+ - name : Build bundle
269+ id : build
258270 run : |
259- yarn install --frozen-lockfile
260- cd packages/cactus-plugin-satp-hermes
261- yarn run build
262- yarn run build:bundle
271+ yarn lerna run build:bundle --scope=@hyperledger/cactus-plugin-satp-hermes
272+ echo "success=true" >> "$GITHUB_OUTPUT"
263273
264274 - name : Set up Docker Buildx
265275 uses : docker/setup-buildx-action@v3
You can’t perform that action at this time.
0 commit comments