-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
2 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 |
---|---|---|
|
@@ -94,7 +94,7 @@ jobs: | |
|
||
- name: Create release on main or develop | ||
# Release on develop keeps the type pre-release | ||
if: github.ref == ( 'refs/heads/main' || 'refs/heads/develop' ) | ||
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop' | ||
env: | ||
GITHUB_USER: "frzb" | ||
GITHUB_REPO: "coinboot" | ||
|
@@ -114,7 +114,6 @@ jobs: | |
git pull --tags origin | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Github Actions" | ||
git tag -d $PRE_RELEASE_TAG | ||
git tag $RELEASE_TAG | ||
git remote rm origin | ||
git remote add origin https://"${GITHUB_TOKEN}"@github.com/"${GITHUB_USER}"/"${GITHUB_REPO}".git | ||
|