Skip to content

Commit

Permalink
Fixing script typos (#27971)
Browse files Browse the repository at this point in the history
  • Loading branch information
woody-apple authored and pull[bot] committed Jul 17, 2024
1 parent 4c569b0 commit bfc192b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/docker_img.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build images using project bash script
- name: Build & Push images using project bash script
if: ${{ inputs.push_images == true }}
run: |
cd integrations/docker/images/base/chip-build${{ matrix.img }}
./build.sh --latest --push
- name: Build & Push images using project bash script
- name: Build images using project bash script
if: ${{ inputs.push_images == false }}
run: |
cd integrations/docker/images/base/chip-build${{ matrix.img }}
Expand All @@ -71,12 +71,12 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build images using project bash script
- name: Build & Push images using project bash script
if: ${{ inputs.push_images == true }}
run: |
cd integrations/docker/images/stage-1/chip-build${{ matrix.img }}
./build.sh --latest --push
- name: Build & Push images using project bash script
- name: Build images using project bash script
if: ${{ inputs.push_images == false }}
run: |
cd integrations/docker/images/stage-1/chip-build${{ matrix.img }}
Expand Down Expand Up @@ -111,12 +111,12 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build images using project bash script
- name: Build & Push images using project bash script
if: ${{ inputs.push_images == true }}
run: |
cd integrations/docker/images/stage-2/chip-build${{ matrix.img }}
./build.sh --latest --push
- name: Build & Push images using project bash script
- name: Build images using project bash script
if: ${{ inputs.push_images == false }}
run: |
cd integrations/docker/images/stage-2/chip-build${{ matrix.img }}
Expand All @@ -137,12 +137,12 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build images using project bash script
- name: Build & Push images using project bash script
if: ${{ inputs.push_images == true }}
run: |
cd integrations/docker/images/stage-3/chip-build${{ matrix.img }}
./build.sh --latest --push
- name: Build & Push images using project bash script
- name: Build images using project bash script
if: ${{ inputs.push_images == false }}
run: |
cd integrations/docker/images/stage-3/chip-build${{ matrix.img }}
Expand All @@ -160,12 +160,12 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build images using project bash script
- name: Build & Push images using project bash script
if: ${{ inputs.push_images == true }}
run: |
cd integrations/docker/images/vscode/chip-build${{ matrix.img }}
./build.sh --latest --push
- name: Build & Push images using project bash script
- name: Build images using project bash script
if: ${{ inputs.push_images == false }}
run: |
cd integrations/docker/images/vscode-3/chip-build${{ matrix.img }}
Expand Down

0 comments on commit bfc192b

Please sign in to comment.