Skip to content

Commit

Permalink
comment fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mrehan27 committed Sep 6, 2024
1 parent 2fed5e8 commit 08cf18f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/actions/main-sample-app-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ runs:
# If the cache is found, we set the cache-hit status to true.
# This is useful for future steps to know if the cache was found or not.
# Also, if the cache is found, we do not need to save the build.
- name: Set cache-hit and should-save-build values
shell: bash
run: |
Expand All @@ -59,7 +58,7 @@ runs:
echo "Cache Hit Value: $build_cache_hit"
# If the cache is not found, we need to build the sample app for main branch.
# So, we checkout the main branch and build the sample app.
# So we checkout the main branch and build the sample app.
- name: Checkout main branch
if: ${{ env.BUILD_CACHE_HIT == 'false' }}
uses: actions/checkout@v4
Expand Down Expand Up @@ -92,7 +91,7 @@ runs:
cp -r ${{ inputs.set-latest-main-build }} ${{ env.BUILD_FILE_NAME }}
# If the cache was not found, we need to copy the fallback build to the expected name.
# This is similar to the previous step, but we are doing it for the case where the cache was not found.
# This is similar to the previous step, but we are doing it for the case where cache was not found.
- name: If cache was not found, copy fallback build to expected name
if: ${{ env.BUILD_CACHE_HIT == 'false' }}
working-directory: ${{ env.APN_SAMPLE_APP_BUILD_PATH }}
Expand Down

0 comments on commit 08cf18f

Please sign in to comment.