Sha256: 156f5e56cc5b7143171505c000281720856c9d015bb346ef9f3b2602d02157b2
Contents?: true
Size: 1000 Bytes
Versions: 13
Compression:
Stored size: 1000 Bytes
Contents
version: 2 jobs: test: working_directory: ~/ruby-terraform docker: - image: ruby:2.3.7 steps: - checkout - run: ./scripts/ci/steps/test.sh prerelease: working_directory: ~/ruby-terraform docker: - image: ruby:2.3.7 steps: - checkout - run: ./scripts/ci/common/install-git-crypt.sh - run: ./scripts/ci/steps/prerelease.sh release: working_directory: ~/ruby-terraform docker: - image: ruby:2.3.7 steps: - checkout - run: ./scripts/ci/common/install-git-crypt.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
13 entries across 13 versions & 1 rubygems