Skip to content

Commit 83acf48

Browse files
committed
Do not include Bundler in the archive
* That way we can install any version of Bundler at runtime.
1 parent 4e64812 commit 83acf48

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,9 @@ jobs:
103103
cp jruby ruby
104104
# Create ruby.bat, so 'ruby' works in pwsh
105105
echo -en "@ECHO OFF\r\n@\"%~dp0jruby.exe\" %*\r\n" > ruby.bat
106+
- name: Create archive
107+
run: tar czf jruby-head-${{ matrix.os }}.tar.gz jruby-head
108+
106109
- name: Install Bundler if needed
107110
shell: bash
108111
run: |
@@ -112,9 +115,6 @@ jobs:
112115
gem install bundler -v '~> 1' --no-document
113116
fi
114117
115-
- name: Create archive
116-
run: tar czf jruby-head-${{ matrix.os }}.tar.gz jruby-head
117-
118118
# Test
119119
- run: echo "::add-path::$PWD/jruby-head/bin"
120120
- run: ruby --version

0 commit comments

Comments
 (0)