Sha256: 6a66aa83203dfd470e675999947a6db153057607b55b1ee6ddea6d5200eeea37
Contents?: true
Size: 802 Bytes
Versions: 30
Compression:
Stored size: 802 Bytes
Contents
--- name: _build on: workflow_call: inputs: ruby_version: description: The Ruby version. type: string required: false default: '3.2.0' outputs: artifact_name: description: The artifact name. value: build-${{ github.sha }} jobs: build: name: Gem runs-on: ubuntu-latest timeout-minutes: 30 steps: - name: Checkout uses: actions/checkout@v3 - name: Setup uses: ./.github/actions/setup with: ruby_version: ${{ inputs.ruby_version }} - name: Build run: bundle exec rake build - name: Upload artifact uses: actions/upload-artifact@v3 with: name: build-${{ github.sha }} if-no-files-found: error path: pkg/
Version data entries
30 entries across 30 versions & 1 rubygems