Sha256: 8a7047444b08f6007224bbc89544445a6932b790432a195ad14676417100d9bf
Contents?: true
Size: 618 Bytes
Versions: 2
Compression:
Stored size: 618 Bytes
Contents
name: Release on: workflow_dispatch: branches: [ main ] jobs: release: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: '3.1' bundler-cache: true - name: Install dependencies run: if [[ $(uname) == "Darwin" ]]; then brew install graphviz; else sudo apt-get install graphviz; fi - name: Test run: bundle exec rake - name: Build run: gem build seafoam.gemspec - name: Upload uses: actions/upload-artifact@v3 with: name: release-build path: 'seafoam-*.gem'
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bundler_install_stats-0.1.1 | .github/workflows/release.yml |
bundler_install_stats-0.1.0 | .github/workflows/release.yml |