Skip to content

Commit c24aad2

Browse files
committed
[libc++] Adjust the workflow file for building a Docker image
1 parent 1799d57 commit c24aad2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/libcxx-build-containers.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ jobs:
3535

3636
- name: Build the Linux builder image and the Android builder image
3737
working-directory: libcxx/utils/ci
38-
run:
39-
- docker compose build actions-builder
40-
- docker compose build android-buildkite-builder
38+
run: |
39+
docker compose build actions-builder
40+
docker compose build android-buildkite-builder
4141
4242
- name: Log in to GitHub Container Registry
4343
uses: docker/login-action@v3
@@ -49,15 +49,15 @@ jobs:
4949
- name: Push the Linux builder image
5050
if: github.event_name == 'push'
5151
working-directory: libcxx/utils/ci
52-
run:
53-
- docker compose push actions-builder
52+
run: |
53+
docker compose push actions-builder
5454
env:
5555
TAG: libcxx-linux-builder:${{ github.sha }}
5656

5757
- name: Push the Android builder image
5858
if: github.event_name == 'push'
5959
working-directory: libcxx/utils/ci
60-
run:
61-
- docker compose push android-buildkite-builder
60+
run: |
61+
docker compose push android-buildkite-builder
6262
env:
6363
TAG: libcxx-android-builder:${{ github.sha }}

0 commit comments

Comments
 (0)