Sha256: 983fba4c4049558a7db41c91a355176e72a033520088e10e42fb58ed406f26d2
Contents?: true
Size: 1.22 KB
Versions: 9
Compression:
Stored size: 1.22 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: 'skip' push: tags: [ v* ] jobs: release: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: '2.6' bundler-cache: true - run: gem install gem-release - run: | git config user.name github-actions git config user.email github-actions@github.com - if: github.event_name == 'workflow_dispatch' && github.event.inputs.next_version != 'skip' run: 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 envsubst << 'EOF' > ~/.gem/credentials --- :rubygems_api_key: ${RUBYGEMS_API_KEY} EOF chmod 0600 ~/.gem/credentials gem release
Version data entries
9 entries across 9 versions & 1 rubygems