Skip to content

Commit

Permalink
Update action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
matiasalbarello committed Sep 16, 2021
1 parent 551ef93 commit 752bfae
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,19 @@ runs:
- uses: ruby/setup-ruby@v1.81.0
with:
ruby-version: 2.7 # Not needed with a .ruby-version file
bundler-cache: true
working-directory: ${{ github.action_path }}

# - name: Bundle Install
# run: |
# bundle install --jobs 4 --retry 3
# working-directory: ${{ github.action_path }}
# shell: bash
- name: Cache Ruby Gems
uses: actions/cache@v2
with:
path: ${{ github.action_path }}
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: ${{ runner.os }}-gems-

- name: Bundle Install
run: |
bundle install --jobs 4 --retry 3
working-directory: ${{ github.action_path }}
shell: bash

- run: |
ruby entrypoint.rb
Expand Down

0 comments on commit 752bfae

Please sign in to comment.