Skip to content

Commit

Permalink
Add ssh key to fetch cog-trt-llm
Browse files Browse the repository at this point in the history
  • Loading branch information
yorickvP committed Apr 9, 2024
1 parent 3ee9323 commit 55b9301
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/nix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,14 @@ jobs:
endpoint: ${{ secrets.ATTIC_ENDPOINT }}
cache: replicate
token: ${{ secrets.ATTIC_TOKEN }}
# - run: nix build --accept-flake-config .#cog-triton-builder -o cog-triton-builder
- name: Get ssh key from secret
env:
GIT_SSH_KEY: ${{ secrets.GIT_SSH_KEY }}
run: |
mkdir -p .ssh
cat > .ssh/id_ed25519 <<< "$GIT_SSH_KEY"
chmod 0600 .ssh/id_ed25519
- run: nix build --accept-flake-config .#cog-triton-builder -o cog-triton-builder
- run: nix build --accept-flake-config .#cog-triton-runner-86 -o cog-triton-runner-86
- run: nix build --accept-flake-config .#cog-triton-runner-80 -o cog-triton-runner-80
- run: nix build --accept-flake-config .#cog-triton-runner-90 -o cog-triton-runner-90

0 comments on commit 55b9301

Please sign in to comment.