-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set up automatic gem releasing on tag creation [ci skip]
- Loading branch information
Showing
2 changed files
with
115 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
name: Release gem to RubyGems | ||
|
||
on: | ||
push: | ||
tags: | ||
- v* | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
id-token: write | ||
packages: write | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 # Fetch current tag as annotated. See https://github.com/actions/checkout/issues/290 | ||
- uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: 3.2 | ||
- name: "Extract data from tag: version, message, body" | ||
id: tag | ||
run: | | ||
git fetch --tags --force # Really fetch annotated tag. See https://github.com/actions/checkout/issues/290#issuecomment-680260080 | ||
echo ::set-output name=version::${GITHUB_REF#refs/tags/v} | ||
echo ::set-output name=subject::$(git for-each-ref $GITHUB_REF --format='%(contents:subject)') | ||
BODY="$(git for-each-ref $GITHUB_REF --format='%(contents:body)')" | ||
# Extract changelog entries between this and previous version headers | ||
escaped_version=$(echo ${GITHUB_REF#refs/tags/v} | sed -e 's/[]\/$*.^[]/\\&/g') | ||
changelog=$(awk "BEGIN{inrelease=0} /## \[${escaped_version}\]/{inrelease=1;next} /## \[[0-9]+\.[0-9]+\.[0-9]+.*?\]/{inrelease=0;exit} {if (inrelease) print}" CHANGELOG.md) | ||
# Multiline body for release. See https://github.community/t/set-output-truncates-multiline-strings/16852/5 | ||
BODY="${BODY}"$'\n'"${changelog}" | ||
BODY="${BODY//'%'/'%25'}" | ||
BODY="${BODY//$'\n'/'%0A'}" | ||
BODY="${BODY//$'\r'/'%0D'}" | ||
echo "::set-output name=body::$BODY" | ||
# Add pre-release option if tag name has any suffix after vMAJOR.MINOR.PATCH | ||
if [[ ${GITHUB_REF#refs/tags/} =~ ^v[0-9]+\.[0-9]+\.[0-9]+.+ ]]; then | ||
echo ::set-output name=prerelease::true | ||
fi | ||
- name: Build gem | ||
run: gem build | ||
- name: Calculate checksums | ||
run: sha256sum yabeda-gc-${{ steps.tag.outputs.version }}.gem > SHA256SUM | ||
- name: Check version | ||
run: ls -l yabeda-gc-${{ steps.tag.outputs.version }}.gem | ||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ github.ref }} | ||
release_name: ${{ steps.tag.outputs.subject }} | ||
body: ${{ steps.tag.outputs.body }} | ||
draft: false | ||
prerelease: ${{ steps.tag.outputs.prerelease }} | ||
- name: Upload built gem as release asset | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: yabeda-gc-${{ steps.tag.outputs.version }}.gem | ||
asset_name: yabeda-gc-${{ steps.tag.outputs.version }}.gem | ||
asset_content_type: application/x-tar | ||
- name: Upload checksums as release asset | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: SHA256SUM | ||
asset_name: SHA256SUM | ||
asset_content_type: text/plain | ||
- name: Configure RubyGems Credentials | ||
uses: rubygems/configure-rubygems-credentials@main | ||
- name: Publish to RubyGems | ||
run: | | ||
gem push yabeda-gc-${{ steps.tag.outputs.version }}.gem |
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