Skip to content

Commit

Permalink
Merge pull request #1 from solarwinds/package-workflow
Browse files Browse the repository at this point in the history
upload workflow
  • Loading branch information
xuan-cao-swi authored Dec 6, 2023
2 parents f6e540f + c144c23 commit 3ef783e
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/push-package-solarwinds.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Ruby Gem to SolarWinds Github Package

on:
workflow_dispatch:
inputs:
gem_name:
required: true
description: 'The name of gem you want to publish (without opentelemetry-instrumentation e.g. aws_sdk)'

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: |
./script/sw_build_and_push_gem.sh ${{ github.event.inputs.gem_name }}
19 changes: 19 additions & 0 deletions .github/workflows/script/sw_build_and_push_gem.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#!/bin/bash

GEM_NAME="$1"

cd "instrumentation/$GEM_NAME" || exit 1

bundle install

# get gem version using bash
file_to_find="version.rb"
found_file=$(find "." -type f -name "$file_to_find")
gem_version=$(grep -E "VERSION\s*=\s*'[^']+'" "$found_file" | awk -F "'" '{print $2}')

# build and push gem
gem build "opentelemetry-instrumentation-$GEM_NAME.gemspec"
gem push --key github --host https://rubygems.pkg.github.com/solarwinds "opentelemetry-instrumentation-$GEM_NAME-$gem_version.gem"

# finished
echo "Finished"

0 comments on commit 3ef783e

Please sign in to comment.