Skip to content
This repository has been archived by the owner on Aug 27, 2024. It is now read-only.

Commit

Permalink
style(ci): fix indenting
Browse files Browse the repository at this point in the history
  • Loading branch information
dorucioclea committed Apr 5, 2024
1 parent ecee974 commit 6e6ebe6
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/build-and-push-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,23 @@ jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Save Choice
run: |
BUILD_CHOICE_VALUE="${{ github.event.inputs.build-choice }}"
if [[ -z "$BUILD_CHOICE_VALUE" ]]; then
BUILD_CHOICE_VALUE="[All]"
fi
- name: Save Choice
run: |
BUILD_CHOICE_VALUE="${{ github.event.inputs.build-choice }}"
if [[ -z "$BUILD_CHOICE_VALUE" ]]; then
BUILD_CHOICE_VALUE="[All]"
fi
if [[ $BUILD_CHOICE_VALUE == "[All]" ]]; then
echo "Build choice = All"
echo "services=seqcli nginx db-backup" >> $GITHUB_ENV
else
echo "Build choice = $BUILD_CHOICE_VALUE"
echo "services=$BUILD_CHOICE_VALUE" >> $GITHUB_ENV
fi
if [[ $BUILD_CHOICE_VALUE == "[All]" ]]; then
echo "Build choice = All"
echo "services=seqcli nginx db-backup" >> $GITHUB_ENV
else
echo "Build choice = $BUILD_CHOICE_VALUE"
echo "services=$BUILD_CHOICE_VALUE" >> $GITHUB_ENV
fi
echo "ci_choice=$BUILD_CHOICE_VALUE" >> $GITHUB_ENV
echo "Received choice: $BUILD_CHOICE_VALUE"
echo "ci_choice=$BUILD_CHOICE_VALUE" >> $GITHUB_ENV
echo "Received choice: $BUILD_CHOICE_VALUE"
- name: Checkout repository
uses: actions/checkout@v2
Expand Down

0 comments on commit 6e6ebe6

Please sign in to comment.