Sha256: 2f728dd4e08362c476438c942ca0345ef576f992069b236e36721297b758037f
Contents?: true
Size: 842 Bytes
Versions: 12
Compression:
Stored size: 842 Bytes
Contents
name: Push to rubygems.org on: workflow_dispatch: inputs: rubygems-otp-code: description: RubyGems OTP code required: true type: string email: description: Your email required: true type: string jobs: release: runs-on: ubuntu-latest env: GEM_HOST_API_KEY: ${{ secrets.GEM_HOST_API_KEY }} GEM_HOST_OTP_CODE: ${{ github.event.inputs.rubygems-otp-code }} steps: - uses: actions/checkout@v3 with: fetch-depth: 0 - uses: ruby/setup-ruby@v1 with: ruby-version: '3.1' bundler-cache: true - name: config run: | git config --global user.email ${{ github.event.inputs.email }} git config --global user.name ${{ github.actor }} - name: release run: bundle exec rake release
Version data entries
12 entries across 12 versions & 2 rubygems