-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
disable workflow bot, until repo can be made public
- Loading branch information
1 parent
3fc4156
commit fbeaf88
Showing
1 changed file
with
22 additions
and
22 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 |
---|---|---|
|
@@ -89,25 +89,25 @@ jobs: | |
run: | | ||
poetry run pytest | ||
- name: Commit Version Bump | ||
# If building develop, a release branch, or main then we commit the version bump back to the repo | ||
if: | | ||
github.ref == 'refs/heads/develop' || | ||
github.ref == 'refs/heads/main' || | ||
startsWith(github.ref, 'refs/heads/release') | ||
run: | | ||
git config --global user.name 'bumblebee bot' | ||
git config --global user.email '[email protected]' | ||
git commit -am "/version ${{ env.software_version }}" | ||
git push | ||
- name: Push Tag | ||
if: | | ||
github.ref == 'refs/heads/develop' || | ||
github.ref == 'refs/heads/main' || | ||
startsWith(github.ref, 'refs/heads/release') | ||
run: | | ||
git config user.name "${GITHUB_ACTOR}" | ||
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" | ||
git tag -a "${{ env.software_version }}" -m "Version ${{ env.software_version }}" | ||
git push origin "${{ env.software_version }}" | ||
# - name: Commit Version Bump | ||
# # If building develop, a release branch, or main then we commit the version bump back to the repo | ||
# if: | | ||
# github.ref == 'refs/heads/develop' || | ||
# github.ref == 'refs/heads/main' || | ||
# startsWith(github.ref, 'refs/heads/release') | ||
# run: | | ||
# git config --global user.name 'bumblebee bot' | ||
# git config --global user.email '[email protected]' | ||
# git commit -am "/version ${{ env.software_version }}" | ||
# git push | ||
# | ||
# - name: Push Tag | ||
# if: | | ||
# github.ref == 'refs/heads/develop' || | ||
# github.ref == 'refs/heads/main' || | ||
# startsWith(github.ref, 'refs/heads/release') | ||
# run: | | ||
# git config user.name "${GITHUB_ACTOR}" | ||
# git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" | ||
# git tag -a "${{ env.software_version }}" -m "Version ${{ env.software_version }}" | ||
# git push origin "${{ env.software_version }}" |