Skip to content

Commit

Permalink
Remove trailing commas (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
CalvinAllen authored Oct 22, 2024
1 parent 14a39fe commit 45a054e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:
context: .
push: false
build-args: |
BROWSER_LICENSE_KEY=${{ secrets.BROWSER_LICENSE_KEY }},
BROWSER_ACCOUNT_ID=${{ secrets.BROWSER_ACCOUNT_ID }},
BROWSER_TRUST_KEY=${{ secrets.BROWSER_TRUST_KEY }},
BROWSER_AGENT_ID=${{ secrets.BROWSER_AGENT_ID }},
BROWSER_LICENSE_KEY=${{ secrets.BROWSER_LICENSE_KEY }}
BROWSER_ACCOUNT_ID=${{ secrets.BROWSER_ACCOUNT_ID }}
BROWSER_TRUST_KEY=${{ secrets.BROWSER_TRUST_KEY }}
BROWSER_AGENT_ID=${{ secrets.BROWSER_AGENT_ID }}
BROWSER_APPLICATION_ID=${{ secrets.BROWSER_APPLICATION_ID }}
8 changes: 4 additions & 4 deletions .github/workflows/publish_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ jobs:
labels: ${{ steps.meta.outputs.labels }}
github-token: ${{ secrets.GITHUB_TOKEN }}
build-args: |
BROWSER_LICENSE_KEY=${{ secrets.BROWSER_LICENSE_KEY }},
BROWSER_ACCOUNT_ID=${{ secrets.BROWSER_ACCOUNT_ID }},
BROWSER_TRUST_KEY=${{ secrets.BROWSER_TRUST_KEY }},
BROWSER_AGENT_ID=${{ secrets.BROWSER_AGENT_ID }},
BROWSER_LICENSE_KEY=${{ secrets.BROWSER_LICENSE_KEY }}
BROWSER_ACCOUNT_ID=${{ secrets.BROWSER_ACCOUNT_ID }}
BROWSER_TRUST_KEY=${{ secrets.BROWSER_TRUST_KEY }}
BROWSER_AGENT_ID=${{ secrets.BROWSER_AGENT_ID }}
BROWSER_APPLICATION_ID=${{ secrets.BROWSER_APPLICATION_ID }}
NEW_RELIC_METADATA_COMMIT=${{ github.sha }}
NEW_RELIC_METADATA_RELEASE_TAG=${{ github.ref_name }}
Expand Down

0 comments on commit 45a054e

Please sign in to comment.