Sha256: 4745a1f9e6bd9bf6a7be4e60b30296d8759ae66aeb6a2979ab7b203a15273c0e
Contents?: true
Size: 1.32 KB
Versions: 3
Compression:
Stored size: 1.32 KB
Contents
name: Publish Ruby Gem - Deploy on: push: branches: [ master ] permissions: contents: write jobs: build: name: Build and Publish runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: bundler-cache: true - name: Publish to RubyGems run: | mkdir -p $HOME/.gem touch $HOME/.gem/credentials chmod 0600 $HOME/.gem/credentials printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials gem build *.gemspec gem push *.gem env: GEM_HOST_API_KEY: ${{secrets.RUBYGEMS_API_KEY}} - name: Get Gem Version id: get-gem-version run: echo "GEM_VERSION=$(bundle exec ruby -e 'puts FlipFab::VERSION')" >> $GITHUB_OUTPUT - name: Create Release uses: actions/github-script@v6 env: GEM_VERSION: ${{ steps.get-gem-version.outputs.GEM_VERSION }} with: result-encoding: string script: | const { GEM_VERSION } = process.env github.rest.repos.createRelease({ owner: context.repo.owner, repo: context.repo.repo, tag_name: GEM_VERSION, generate_release_notes: true, })
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
flip_fab-1.1.21 | .github/workflows/gem-publish.yml |
flip_fab-1.1.20 | .github/workflows/gem-publish.yml |
flip_fab-1.1.19 | .github/workflows/gem-publish.yml |