-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7f79b2b
commit ea51af7
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
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
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 }}" |