Sha256: 789acb1a5fdd4a24875c2a6a3ec3b5dd1e76ca861dbd50d788de18cea02c353f
Contents?: true
Size: 1.26 KB
Versions: 5
Compression:
Stored size: 1.26 KB
Contents
version: 2.1 jobs: test: working_directory: ~/rake-docker docker: - image: ruby:2.6.0 steps: - checkout - run: ./scripts/ci/steps/test.sh prerelease: working_directory: ~/rake-docker docker: - image: ruby:2.6.0 steps: - checkout - run: ./scripts/ci/common/install-git-crypt.sh - run: ./scripts/ci/common/install-gpg-key.sh - run: ./scripts/ci/common/configure-git.sh - run: ./scripts/ci/common/configure-rubygems.sh - run: ./scripts/ci/steps/prerelease.sh release: working_directory: ~/rake-docker docker: - image: ruby:2.6.0 steps: - checkout - run: ./scripts/ci/common/install-git-crypt.sh - run: ./scripts/ci/common/install-gpg-key.sh - run: ./scripts/ci/common/configure-git.sh - run: ./scripts/ci/common/configure-rubygems.sh - run: ./scripts/ci/steps/release.sh workflows: version: 2 pipeline: jobs: - test - prerelease: requires: - test filters: branches: only: master - hold: type: approval requires: - prerelease filters: branches: only: master - release: requires: - hold filters: branches: only: master
Version data entries
5 entries across 5 versions & 1 rubygems