Ruby Gem to Github Package #3
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
# Copyright (c) 2023 SolarWinds, LLC. | |
# All rights reserved. | |
name: Ruby Gem to Github Package | |
on: | |
workflow_dispatch: | |
inputs: | |
gem_name: | |
required: true | |
description: 'The name of gem you want to publish (without opentelemetry e.g. exporter-otlp)' | |
jobs: | |
build: | |
name: Build + Publish to Github Package | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Ruby 3.1 and bundle | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.1 | |
- name: Setup secrets | |
run: | | |
mkdir ~/.gem | |
echo -e "---\n:github: Bearer $GITHUB_SECRET_TOKEN" >> ~/.gem/credentials | |
chmod 0600 ~/.gem/credentials | |
env: | |
GITHUB_SECRET_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build gem and publish to github package | |
id: gemstep | |
run: | | |
.github/workflows/script//sw_build_and_push_gem.sh ${{ github.event.inputs.gem_name }} |