Sha256: 5b9e56b550b229f53fe39864ff7491972bd393e9f35efafd642dbcf178c3dde3

Contents?: true

Size: 1.14 KB

Versions: 7

Compression:

Stored size: 1.14 KB

Contents

# Auto-generated by Cimas: Do not edit it manually!
# See https://github.com/metanorma/cimas
name: release

on:
  workflow_dispatch:
    inputs:
      next_version:
        description: |
          Next release version. Possible values: x.y.z, major, minor, patch or pre|rc|etc
        required: true
        default: 'patch'
  push:
    tags: [ v* ]

jobs:
  release:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2

      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: '2.6'

      - run: gem install gem-release

      - if: ${{ github.event_name == 'workflow_dispatch' }}
        run: |
          git config user.name github-actions
          git config user.email github-actions@github.com
          gem bump --version ${{ github.event.inputs.next_version }} --tag --push

      - name: publish to rubygems.org
        env:
          RUBYGEMS_API_KEY: ${{secrets.METANORMA_CI_RUBYGEMS_API_KEY}}
        run: |
          gem install gem-release
          cat > ~/.gem/credentials << EOF
          ---
          :rubygems_api_key: ${RUBYGEMS_API_KEY}
          EOF
          chmod 0600 ~/.gem/credentials
          gem release

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
stepmod-utils-0.3.4 .github/workflows/release.yml
stepmod-utils-0.3.2 .github/workflows/release.yml
stepmod-utils-0.3.1 .github/workflows/release.yml
stepmod-utils-0.3.0 .github/workflows/release.yml
stepmod-utils-0.2.7 .github/workflows/release.yml
stepmod-utils-0.2.6 .github/workflows/release.yml
stepmod-utils-0.2.5 .github/workflows/release.yml