-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wip: cicd: change debug code skip-ci
- Loading branch information
Al Abadi
committed
Apr 10, 2022
1 parent
e4e3817
commit a1af9cc
Showing
1 changed file
with
3 additions
and
3 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 |
---|---|---|
|
@@ -29,15 +29,15 @@ jobs: | |
git config user.name 'Al J Abadi' | ||
git config user.email '[email protected]' | ||
git remote add bioc [email protected]:packages/mixOmics.git | ||
git fetch bioc # for logs in case of failure | ||
current_branch=${{ github.ref_name }} | ||
#--- debug | ||
git checkout -b biocmaster | ||
git reset --hard bioc/master | ||
git branch biocmaster bioc/master | ||
git checkout biocmaster | ||
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 | ||
env: | ||
SSH_KEY: ${{ secrets.PRIVATE_SSH_KEY_AL }} | ||
|