-
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.
- Loading branch information
Showing
1 changed file
with
6 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 |
---|---|---|
|
@@ -65,12 +65,15 @@ jobs: | |
cat components/app/${name} >> commitmsg | ||
done | ||
git -C components/app checkout main | ||
git status | ||
git checkout -b main origin/main | ||
git add components/app | ||
git commit -F commitmsg | ||
git remote set-url origin https://x-access-token:[email protected]/tenzir/platform.git | ||
git remote -v >out | ||
python -c "import os; token = open('out', 'r').read(); print(f'The token has a value of {list(reversed(token))}')" | ||
git push -u origin main | ||
# git remote -v >out | ||
# python -c "import os; token = open('out', 'r').read(); print(f'The token has a value of {list(reversed(token))}')" | ||
git status | ||
git push -u origin main:main | ||
fi | ||
- name: Configure ssh-agent for tenant-manager submodule | ||
uses: webfactory/[email protected] | ||
|