Skip to content

Commit 5695a3f

Browse files
committed
ci(satp-hermes): docker ci
Signed-off-by: Carlos Amaro <[email protected]>
1 parent a14f896 commit 5695a3f

File tree

1 file changed

+20
-10
lines changed

1 file changed

+20
-10
lines changed

.github/workflows/satp-hermes-docker.yaml

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)