Skip to content
This repository has been archived by the owner on May 16, 2021. It is now read-only.

Commit

Permalink
Setup Git to Allow Commit By CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mainawycliffe committed Apr 12, 2020
1 parent 7d40658 commit c0210a1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup GIT
run: |
git switch -c master
git config user.email "[email protected]"
git config user.name "$GITHUB_ACTOR"
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
Expand Down

0 comments on commit c0210a1

Please sign in to comment.