Sign inSign up

tmaier/gemfury

By tmaier

Updated over 3 years ago

Gemfury. Ready for your CI/CD pipeline

Image
1

4.3K

tmaier/gemfury repository overview

Gemfury Docker Image

This docker image is based on the official Ruby image and adds the Gemfury gem to it. This is very useful for CI pipelines that need to upload gems to Gemfury.

Docker Pulls Docker Stars GitHub issues GitHub stars

Usage instructions for GitLab CI

The following example shows how to use this image in a GitLab CI pipeline (e.g. .gitlab-ci.yml). It depends on a build job that produces a .gem file in the pkg directory.

Configure GEMFURY_API_TOKEN as a variable in the GitLab CI settings. Learn more how to manage access tokens (push tokens) at Gemfury.

upload:gemfury:
  image:
    name: tmaier/gemfury:latest
    entrypoint: [""]
  script:
    - fury push ./pkg/*.gem --api-token=$GEMFURY_API_TOKEN
  variables:
    GIT_STRATEGY: none
  dependencies:
    - build
  stage: upload
  only:
    - master

Author

Tobias L. Maier for BauCloud GmbH

License

See LICENSE.

Tag summary

Content type

Image

Digest

sha256:381dd6f19

Size

32.5 MB

Last updated

over 3 years ago

docker pull tmaier/gemfury