Sha256: cf95a5027f85d0cfa402207a089b189438393773566a28db8e3b41d9d0611396
Contents?: true
Size: 790 Bytes
Versions: 1
Compression:
Stored size: 790 Bytes
Contents
name: build on: push: branches: - main pull_request: branches: - main workflow_call: permissions: contents: read jobs: build: name: build runs-on: ubuntu-latest steps: - name: checkout uses: actions/checkout@v3 - uses: ruby/setup-ruby@250fcd6a742febb1123a77a841497ccaa8b9e939 # pin@v1.152.0 with: bundler-cache: true - name: bootstrap run: script/bootstrap - 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
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
github-username-regex-ruby-0.0.5 | .github/workflows/build.yml |