Skip to content

Commit

Permalink
Fall back to sh on non-Windows
Browse files Browse the repository at this point in the history
Fixes #13
  • Loading branch information
ncfavier authored Aug 16, 2022
1 parent 6a57e48 commit c62237c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ runs:
using: composite
steps:
- name: Archive artifact
shell: bash
if: runner.os == 'Linux'
run: |
tar \
Expand All @@ -27,7 +26,6 @@ runs:
# Switch to gtar (GNU tar instead of bsdtar which is the default in the MacOS runners so we can use --hard-dereference)
- name: Archive artifact
shell: bash
if: runner.os == 'macOS'
run: |
gtar \
Expand Down

0 comments on commit c62237c

Please sign in to comment.