Sha256: a9dc6da73f8fbb3b84cbae9092de82fc43b2e18bf52d8bbdc17fc166cd1b9dd1

Contents?: true

Size: 840 Bytes

Versions: 19

Compression:

Stored size: 840 Bytes

Contents

name: mangopay2-net-ruby-cd

on:
  push:
    # Sequence of patterns matched against refs/tags
    tags:
      # It pushes any tags that contain a v. ex: v1.16.1
      - '*'

jobs:
  build:
    name: Build + Publish
    runs-on: ubuntu-latest
    permissions:
      contents: read
      packages: write

    steps:
      - uses: actions/checkout@v3
      - name: Set up Ruby 2.6
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: 2.6.10

      - name: Publish to RubyGems
        run: |
          mkdir -p $HOME/.gem
          touch $HOME/.gem/credentials
          chmod 0600 $HOME/.gem/credentials
          printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
          gem build *.gemspec
          gem push *.gem
        env:
          GEM_HOST_API_KEY: "${{secrets.GEM_HOST_API_KEY}}"

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
mangopay-3.28.0 .github/workflows/ruby_cd.yml
mangopay-3.27.0 .github/workflows/ruby_cd.yml
mangopay-3.26.1 .github/workflows/ruby_cd.yml
mangopay-3.26.0 .github/workflows/ruby_cd.yml
mangopay-3.25.1 .github/workflows/ruby_cd.yml
mangopay-3.25.0 .github/workflows/ruby_cd.yml
mangopay-3.24.1 .github/workflows/ruby_cd.yml
mangopay-3.24.0 .github/workflows/ruby_cd.yml
mangopay-3.23.0 .github/workflows/ruby_cd.yml
mangopay-3.22.0 .github/workflows/ruby_cd.yml
mangopay-3.21.0 .github/workflows/ruby_cd.yml
mangopay-3.20.0 .github/workflows/ruby_cd.yml
mangopay-3.19.0 .github/workflows/ruby_cd.yml
mangopay-3.18.0 .github/workflows/ruby_cd.yml
mangopay-3.17.0 .github/workflows/ruby_cd.yml
mangopay-3.16.0 .github/workflows/ruby_cd.yml
mangopay-3.15.0 .github/workflows/ruby_cd.yml
mangopay-3.14.0 .github/workflows/ruby_cd.yml
mangopay-3.13.2 .github/workflows/ruby_cd.yml