Skip to content

Commit

Permalink
Test use of env variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
mattRedBox committed Nov 24, 2021
1 parent 914809c commit 905fbd9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ jobs:
if: ${{ runner.os == 'Windows' }}
run: |
yarn run cucumber:report:badge
git config user.name $GITHUB_ACTOR
git config user.email ${GITHUB_ACTOR}@users.noreply.github.com
git config user.name
git config user.email
echo "github actor is ${GITHUB_ACTOR}"
echo "github actor is ${{ github.actor }}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
git config user.name "$GITHUB_ACTOR"
git add test/cucumber_report.html test/cucumber_report.json README.md
git commit -m "[skip actions] Updating branch from github-actions 'Post-test' actions."
git push origin $GITHUB_REF_NAME

0 comments on commit 905fbd9

Please sign in to comment.