Skip to content

Commit

Permalink
Create test-chang-tracking
Browse files Browse the repository at this point in the history
  • Loading branch information
ndesai-newrelic authored Aug 15, 2024
1 parent 7f79b2b commit ea51af7
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test-chang-tracking
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Change Tracking Marker
on:
release:
types: [published]

jobs:
newrelic:
runs-on: ubuntu-latest
name: New Relic
steps:
# This step builds a var with the release tag value to use later
- name: Set Release Version from Tag
run: echo "RELEASE_VERSION=${{ github.ref_name }}" >> $GITHUB_ENV
# This step creates a new Change Tracking Marker
- name: New Relic Application Deployment Marker
uses: newrelic/[email protected]
with:
apiKey: ${{ secrets.NEW_RELIC_API_KEY }}
guid: ${{ secrets.NEW_RELIC_DEPLOYMENT_ENTITY_GUID }}
version: "${{ env.RELEASE_VERSION }}"
user: "${{ github.actor }}"

0 comments on commit ea51af7

Please sign in to comment.