1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
name: Release
on:
push:
tags:
- v*
workflow_dispatch:
jobs:
release:
if: github.repository == 'sinatra/sinatra'
runs-on: ubuntu-latest
permissions:
id-token: write # for trusted publishing
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: ruby
- uses: rubygems/configure-rubygems-credentials@v1.0.0
# ensure gems can be built and installed
- run: bundle exec rake install:rack-protection
- run: bundle exec rake install:sinatra
- run: bundle exec rake install:sinatra-contrib
# push gems to rubygems.org
- run: bundle exec rake release:rack-protection
- run: bundle exec rake release:sinatra
- run: bundle exec rake release:sinatra-contrib
|