We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b5ef18 commit 24b86a8Copy full SHA for 24b86a8
.github/workflows/build-gems.yml
@@ -71,7 +71,10 @@ jobs:
71
RB_SYS_VERSION: ${{ steps.rb-sys.outputs.version }}
72
run: |
73
gem install rb_sys -v "$RB_SYS_VERSION"
74
- rb-sys-dock --platform "$PLATFORM" --directory . --ruby-versions "$RUBY_VERSIONS" --build
+ # rb-sys gem and docker image tags are released independently.
75
+ # Use the latest image tag currently published for all platforms.
76
+ RCD_IMAGE_VERSION="0.9.124" \
77
+ rb-sys-dock --platform "$PLATFORM" --directory . --ruby-versions "$RUBY_VERSIONS" --build
78
79
gem_path="$(find ./pkg -name "*-${PLATFORM}.gem" | head -n1)"
80
if [ -z "$gem_path" ]; then
0 commit comments