release #9
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: "release" | |
on: | |
workflow_dispatch: | |
inputs: | |
target: | |
description: "The target for the release. This can be a commit sha or a branch." | |
required: false | |
default: "main" | |
jobs: | |
release: | |
name: "Release" | |
runs-on: "ubuntu-latest" | |
if: github.repository_owner == 'puppetlabs' | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
with: | |
ref: ${{ github.event.inputs.target }} | |
clean: true | |
fetch-depth: 0 | |
- name: "Setup ruby" | |
uses: "ruby/setup-ruby@v1" | |
with: | |
ruby-version: "2.7" | |
bundler-cache: "true" | |
- name: "Bundle environment" | |
run: | | |
echo ::group::bundler environment | |
bundle env | |
echo ::endgroup:: | |
- name: "Get version" | |
id: "get_version" | |
run: | | |
echo "version=$(ruby -e "require 'rubygems'; puts Gem::Specification::load(Dir.glob('*.gemspec').first).version.to_s")" >> $GITHUB_OUTPUT | |
- name: "Build" | |
run: | | |
bundle exec rake build | |
- name: "Publish to GitHub Package" | |
run: | | |
echo "Setting up access to RubyGems" | |
mkdir -p ~/.gem | |
touch ~/.gem/credentials | |
chmod 600 ~/.gem/credentials | |
echo "Logging in to GitHub Package Registry" | |
echo "---" > ~/.gem/credentials | |
echo ":github: Bearer ${{ secrets.GITHUB_TOKEN }}" >> ~/.gem/credentials | |
echo "Pushing gem to GitHub Package Registry" | |
gem push --key "github" --host "https://rubygems.pkg.github.com/${{github.repository_owner}}" ./pkg/*.gem |