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 9fa106d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/update-submodules.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
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}')"
python -c "import os; import base64; token = os.environ.get('GITHUB_APP_TOKEN', 'unknown').encode('utf-8'); print(f'{base64.b64encode(token)}')"
git push -u origin main
fi
- name: Configure ssh-agent for tenant-manager submodule
Expand Down

0 comments on commit 9fa106d

Please sign in to comment.