Skip to content

Commit

Permalink
Chore: Fix expression
Browse files Browse the repository at this point in the history
  • Loading branch information
DHedgecock committed Feb 20, 2020
1 parent fd9e486 commit 3a2a7bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ jobs:
env:
# Add required git env values for code cov reporting, ref:
# https://docs.codeclimate.com/docs/github-actions-test-coverage
GIT_COMMIT_SHA: process.env.MASTER_SHA || ${{ github.event.pull_request.head.sha }}
GIT_BRANCH: process.env.MASTER_BRANCH || ${{ github.head_ref }}
GIT_COMMIT_SHA: ${{ process.env.MASTER_SHA }} || ${{ github.event.pull_request.head.sha }}
GIT_BRANCH: ${{ process.env.MASTER_BRANCH }} || ${{ github.head_ref }}
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
publish:
name: Continuous Deployment
Expand Down

0 comments on commit 3a2a7bc

Please sign in to comment.