Skip to content

Commit

Permalink
#8534: Use the actual secrets here
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitri-tenstorrent committed Jun 20, 2024
1 parent 7f9e90a commit 33a68ce
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docs-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ jobs:
GITHUB_USER=tenstorrent-github-bot
git config --global user.email "tenstorrent-github-bot@tenstorrent.com"
git config --global user.name "tenstorrent-github-bot"
git clone https://${GITHUB_USER}:${TTBOT_DOCS_ACCESS}@github.com/tenstorrent/docs-test.git
git remote set-url origin https://${GITHUB_USER}:${TTBOT_DOCS_ACCESS}@github.com/tenstorrent/docs-test.git
git clone https://${GITHUB_USER}:${{ secrets.TTBOT_DOCS_ACCESS }}@github.com/tenstorrent/docs-test.git
git remote set-url origin https://${GITHUB_USER}::${{ secrets.TTBOT_DOCS_ACCESS }}@github.com/tenstorrent/docs-test.git
git checkout main
cp -r tt-metalium/* docs-test/tt-metalium
python update_tags.py tt-metalium $DOCS_VERSION
Expand All @@ -90,8 +90,8 @@ jobs:
GITHUB_USER=tenstorrent-github-bot
git config --global user.email "tenstorrent-github-bot@tenstorrent.com"
git config --global user.name "tenstorrent-github-bot"
git clone https://${GITHUB_USER}:${TTBOT_DOCS_ACCESS}@github.com/tenstorrent/docs-test.git
git remote set-url origin https://${GITHUB_USER}:${TTBOT_DOCS_ACCESS}@github.com/tenstorrent/docs-test.git
git clone https://${GITHUB_USER}:${{ secrets.TTBOT_DOCS_ACCESS }}@github.com/tenstorrent/docs-test.git
git remote set-url origin https://${GITHUB_USER}:${{ secrets.TTBOT_DOCS_ACCESS }}@github.com/tenstorrent/docs-test.git
git checkout main
cp -r ttnn-docs/* docs-test/ttnn
python update_tags.py ttnn $DOCS_VERSION
Expand Down

0 comments on commit 33a68ce

Please sign in to comment.