- Notifications
You must be signed in to change notification settings - Fork162
Bump ruby/setup-ruby from 1.270.0 to 1.271.0#251
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| name:build | |
| on: | |
| push: | |
| branches: | |
| -main | |
| pull_request: | |
| branches: | |
| -main | |
| workflow_call: | |
| permissions: | |
| contents:read | |
| jobs: | |
| build: | |
| name:build | |
| strategy: | |
| matrix: | |
| os:[ubuntu-latest, macos-latest] | |
| runs-on:${{ matrix.os }} | |
| steps: | |
| -name:checkout | |
| uses:actions/checkout@v6 | |
| -uses:ruby/setup-ruby@f8d7259c7a66155a7c4a157a1a10ca601f186594# pin@v1.271.0 | |
| with: | |
| bundler-cache:true | |
| -name:build | |
| run:| | |
| GEM_NAME=$(ls | grep gemspec | cut -d. -f1) | |
| echo "Attempting to build gem $GEM_NAME..." | |
| gem build $GEM_NAME | |
| if [ $? -eq 0 ]; then | |
| echo "Gem built successfully!" | |
| else | |
| echo "Gem build failed!" | |
| exit 1 | |
| fi |