Sha256: 942ce65ef7c42aaf24be7d7ed432a6a2e9f82ca5b86f009eb1b6eafe40cb1248

Contents?: true

Size: 1.34 KB

Versions: 6

Compression:

Stored size: 1.34 KB

Contents

name: Ruby CI

on:
  push:
    branches:
      - master
  pull_request:
    branches:
      - master

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version:
          - "3.2"
          - "3.1"
          - "3.0"
    steps:
      - uses: actions/checkout@v3
      - name: Set up Ruby ${{ matrix.ruby-version }}
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby-version }}
          bundler-cache: true # runs 'bundle install' and caches installed gems automatically
      - name: Run tests
        run: bundle exec rake

  release:
    needs: test
    environment: Rubygems
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: "3.0"
          bundler-cache: true # runs 'bundle install' and caches installed gems automatically
      - name: Publish gem
        run: |
          mkdir -p $HOME/.gem
          touch $HOME/.gem/credentials
          chmod 0600 $HOME/.gem/credentials
          printf -- "---\n:rubygems_api_key: ${RUBYGEMS_API_KEY}\n" > $HOME/.gem/credentials
          sed -i "1s/.*/&.${GITHUB_RUN_NUMBER}/" VERSION # Add build number to version
          gem build *.gemspec
          gem push *.gem
        env:
          RUBYGEMS_API_KEY: "${{secrets.RUBYGEMS_API_KEY}}"

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
barsoom_utils-0.2.0.44 .github/workflows/ci.yml
barsoom_utils-0.2.0.43 .github/workflows/ci.yml
barsoom_utils-0.2.0.42 .github/workflows/ci.yml
barsoom_utils-0.2.0.41 .github/workflows/ci.yml
barsoom_utils-0.1.1.40 .github/workflows/ci.yml
barsoom_utils-0.1.1.39 .github/workflows/ci.yml