Failing after success stage

Hi.. our build started to fail on part after successful build (travis_run_after_success).

Error is: The command “rvm use $(travis_internal_ruby) --fuzzy do ruby -S gem install dpl -v 2.0.5.4” failed and exited with 2 during .

Distro:

  • focal and jammy has this error
  • noble failed to start docker
before_deploy:
  - gem install dpl -v 1.10.16

deploy:
  provider: releases  
  edge:
    branch: dpl-v1
  skip_cleanup: true
  on:
    branch: main

This will force Travis to use dpl v1.10.16, which is compatible with Ruby 2.7.6 and should resolve your deployment failures immediately.

1 Like