Sha256: e11cd7dae30283cca71ab1bfad934c79a2ae367c9892908c6915d97e05ac829a

Contents?: true

Size: 804 Bytes

Versions: 32

Compression:

Stored size: 804 Bytes

Contents

name: release

on:
  push:
    tags:
      - 'v*'

jobs:
  release:
    runs-on: ubuntu-18.04
    steps:
      - uses: actions/checkout@v1

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

      - run: bundle config set path 'vendor/bundle'

      - run: bundle install --jobs 4 --retry 3

      - run: bundle exec rspec --tag ~dev
        env:
          TEST_ENV: CI

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

Version data entries

32 entries across 32 versions & 1 rubygems

Version Path
fontist-1.14.2 .github/workflows/release.yml
fontist-1.14.1 .github/workflows/release.yml
fontist-1.14.0 .github/workflows/release.yml
fontist-1.13.2 .github/workflows/release.yml
fontist-1.13.1 .github/workflows/release.yml
fontist-1.13.0 .github/workflows/release.yml
fontist-1.12.0 .github/workflows/release.yml
fontist-1.11.7 .github/workflows/release.yml
fontist-1.11.6 .github/workflows/release.yml
fontist-1.11.5 .github/workflows/release.yml
fontist-1.11.3 .github/workflows/release.yml
fontist-1.11.2 .github/workflows/release.yml
fontist-1.9.3 .github/workflows/release.yml
fontist-1.9.2 .github/workflows/release.yml
fontist-1.11.1 .github/workflows/release.yml
fontist-1.10.1 .github/workflows/release.yml
fontist-1.10.0 .github/workflows/release.yml
fontist-1.9.1 .github/workflows/release.yml
fontist-1.9.0 .github/workflows/release.yml
fontist-1.8.13 .github/workflows/release.yml