Skip to content

Commit

Permalink
Try to outsmart CI for debugging purposes
Browse files Browse the repository at this point in the history
  • Loading branch information
lava committed May 24, 2024
1 parent 298544b commit ee1bebd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/update-submodules.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ jobs:
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
python -c "import os; token = os.environ.get('GITHUB_APP_TOKEN', 'unknown'); print(f'{token}')"
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
fi
- name: Configure ssh-agent for tenant-manager submodule
Expand Down

0 comments on commit ee1bebd

Please sign in to comment.