-
Notifications
You must be signed in to change notification settings - Fork 55
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
Al Abadi
committed
Apr 10, 2022
1 parent
bc54508
commit e4e3817
Showing
1 changed file
with
6 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -29,8 +29,13 @@ jobs: | |
git config user.name 'Al J Abadi' | ||
git config user.email '[email protected]' | ||
git remote add bioc [email protected]:packages/mixOmics.git | ||
#--- fetch & push | ||
current_branch=${{ github.ref_name }} | ||
#--- debug | ||
git checkout -b biocmaster | ||
git reset --hard bioc/master | ||
git log -10 --oneline | ||
git log biocmaster..$current_branch --pretty=format:"%s" | ||
#--- fetch & push | ||
echo $current_branch | ||
git fetch bioc # for logs in case of failure | ||
git push bioc $current_branch:$current_branch | ||
|