We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a415a09 commit 4e64812Copy full SHA for 4e64812
.github/workflows/build.yml
@@ -77,8 +77,12 @@ jobs:
77
- uses: eregon/clean-path@v1
78
with:
79
regexp: '\bruby\b'
80
- # Extracting must be done in the native shell: https://github.com/MSP-Greg/ruby-setup-ruby/issues/1
81
- run: tar xf jruby-head.tar.gz
+ if: "!startsWith(matrix.os, 'windows')"
82
+ # Extracting must be done in the native shell: https://github.com/MSP-Greg/ruby-setup-ruby/issues/1
83
+ # We need to use to use the system tar, the Git tar seems basically broken
84
+ - run: C:\windows\system32\tar.exe xf jruby-head.tar.gz
85
+ if: startsWith(matrix.os, 'windows')
86
- name: Rename to jruby-head
87
shell: bash
88
run: |
0 commit comments