forked from BioSchemas/specifications
-
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.
changed to local repositories with local user
- Loading branch information
1 parent
754ac9d
commit 93b31c0
Showing
1 changed file
with
9 additions
and
9 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 |
---|---|---|
|
@@ -53,7 +53,7 @@ jobs: | |
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
git clone https://user:[email protected]/BioSchemas/bioschemas-dde | ||
git clone https://user:[email protected]/zbmed-semtec/bioschemas-dde | ||
cd bioschemas-dde | ||
git checkout main | ||
ls | ||
|
@@ -62,7 +62,7 @@ jobs: | |
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
git clone https://user:[email protected]/BioSchemas/bioschemas.github.io | ||
git clone https://user:[email protected]/zbmed-semtec/bioschemas.github.io | ||
cd bioschemas.github.io | ||
git pull | ||
ls | ||
|
@@ -86,17 +86,17 @@ jobs: | |
uses: oleksiyrudenko/gha-git-credentials@v2-latest | ||
with: | ||
path: bioschemas.github.io | ||
email: [email protected] | ||
name: sahar-frikha | ||
actor: sahar-frikha | ||
email: [email protected] | ||
name: bernd-mueller | ||
actor: bernd-mueller | ||
token: '${{secrets.GITHUB_TOKEN}}' | ||
|
||
- name: Commit and Push the changes in the website | ||
run: | | ||
sleep 5 | ||
cd bioschemas.github.io | ||
git config user.name "sahar-frikha" | ||
git config user.email "[email protected]" | ||
git config user.name "bernd-mueller" | ||
git config user.email "[email protected]" | ||
git status | ||
git add . | ||
git commit -m "Updating Profile" | ||
|
@@ -111,8 +111,8 @@ jobs: | |
- name: Commit and Push the changes in the DDE repository | ||
run: | | ||
cd bioschemas-dde | ||
git config user.name "sahar-frikha" | ||
git config user.email "[email protected]" | ||
git config user.name "bernd-mueller" | ||
git config user.email "[email protected]" | ||
git status | ||
git add . | ||
git commit -m "Updating Profile" | ||
|