Skip to content

Commit

Permalink
revert bundle install
Browse files Browse the repository at this point in the history
  • Loading branch information
mrehan27 committed Aug 13, 2024
1 parent 74dd54a commit fc4eb10
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build-sample-apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,9 @@ jobs:
ruby-version: ${{ env.RUBY_VERSION }}
bundler-cache: true # cache tools to make builds faster in future

- name: Install Ruby dependencies
run: bundle install

# Update version numbers and workspace credentials before building the app

- name: Generate New Version
Expand Down Expand Up @@ -182,7 +185,7 @@ jobs:
edit-mode: append # append new line to the existing PR comment to build a list of all sample app builds.

- name: Update sample builds PR comment with build failure message
if: ${{ failure() }}
if: ${{ github.event_name == 'pull_request' && failure() }}
uses: peter-evans/create-or-update-comment@v4
with:
comment-id: ${{ needs.update-pr-comment.outputs.comment-id }}
Expand Down

0 comments on commit fc4eb10

Please sign in to comment.