Publish Ruby Gem #11
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Ruby Gem | |
on: | |
release: | |
types: [published] | |
permissions: | |
contents: read | |
pull-requests: read # to detect changes files | |
jobs: | |
release: | |
name: Publish Ruby Gem | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
# We are not letting this step to run bundle install, we will do it later | |
bundler-cache: false | |
- name: Install dependencies | |
run: bundle install | |
- name: Bump version | |
run: | | |
NEW_VERSION=$(echo ${{ github.event.release.tag_name }} | sed 's/^v//') # strip the 'v' from the tag if present | |
echo "New version: ${NEW_VERSION}" | |
sed -i -r "s/(VERSION = \").+(\")/\\1${NEW_VERSION}\\2/" ./lib/descope/version.rb | |
cat ./lib/descope/version.rb | |
git status | |
- name: Commit changes | |
run: | | |
git config --global user.name 'github-actions' | |
git config --global user.email '[email protected]' | |
git add ./lib/descope/version.rb | |
git commit -am "Bump version to $NEW_VERSION" | |
git push | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Repoint the tag to latest commit | |
run: | | |
git tag -d ${{ github.event.release.tag_name }} | |
git tag ${{ github.event.release.tag_name }} -m "Release $NEW_VERSION" | |
git push origin :${{ github.event.release.tag_name }} | |
git push | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- 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}}" |