Skip to content

Commit

Permalink
Merge pull request #433 from newrelic/dev
Browse files Browse the repository at this point in the history
Dev to main for 6.13.0
  • Loading branch information
Rachel Klein committed Sep 9, 2020
2 parents ecb51a6 + 079c159 commit 65b06c1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ jobs:
cd ..
- name: Determine version
run: |
echo ::set-env name=VERSION::$(`ls newrelic_rpm-*.gem | ruby -pe 'sub(/newrelic_rpm\-(.*).gem/, "\\1")'`)
echo ::set-env name=VERSION::$(ls newrelic_rpm-*.gem | ruby -pe 'sub(/newrelic_rpm\-(.*).gem/, "\\1")')
- name: Tag new version
run: |
git tag ${{ env.VERSION }}
git push origin ${{ env.VERSION }}
- name: Get Rubygems OTP for newrelic_rpm
run: echo ::set-env name=RUBYGEMS_OTP::$(ruby ./.github/scripts/ruby-gems-authenticate.rb ${{ secrets.RUBYGEMS_API_KEY }})
run: echo ::set-env name=RUBYGEMS_OTP::$(ruby ./.github/workflows/scripts/ruby-gems-authenticate.rb ${{ secrets.RUBYGEMS_API_KEY }})
- name: Publish newrelic_rpm to Rubygems
run: |
REMOTE_GEMS=`gem list newrelic_rpm -ra --prerelease | grep ${{ env.VERSION }}, || true`
Expand All @@ -40,7 +40,7 @@ jobs:
echo "Already see newrelic_rpm ${{ env.VERSION }} out on rubygems, skipping push"
fi
- name: Get Rubygems OTP for newrelic-infinite_tracing
run: echo ::set-env name=RUBYGEMS_OTP::$(ruby ./ruby-gems-authenticate.rb ${{ secrets.RUBYGEMS_API_KEY }})
run: echo ::set-env name=RUBYGEMS_OTP::$(ruby ./.github/workflows/scripts/ruby-gems-authenticate.rb ${{ secrets.RUBYGEMS_API_KEY }})
- name: Publish newrelic-infinite_tracing to Rubygems
run: |
REMOTE_GEMS=`gem list newrelic-infinite_tracing -ra --prerelease | grep ${{ env.VERSION }}, || true`
Expand Down

0 comments on commit 65b06c1

Please sign in to comment.