fixed exposing ssh key
Some checks failed
TileOS ISO Builder Wrapper / prebuild (push) Failing after 48s
TileOS ISO Builder Wrapper / build-sway (push) Has been skipped

This commit is contained in:
nesteroff561 2025-06-01 16:15:13 +03:00
parent a3074c9b97
commit 451a4659cc
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,7 @@ jobs:
run: | run: |
eval $(ssh-agent -s) eval $(ssh-agent -s)
mkdir /root/.ssh mkdir /root/.ssh
echo "{{ secrets.STORAGE_SSH_KEY }} > ./id_rsa echo "${{ secrets.STORAGE_SSH_KEY }}" > ./id_rsa
chmod 400 ~/.ssh/id_rsa chmod 400 ~/.ssh/id_rsa
rm -rf ${PWD}/output/* rm -rf ${PWD}/output/*
mkdir ${PWD}/output mkdir ${PWD}/output

View file

@ -12,7 +12,7 @@ jobs:
name: Build builder image name: Build builder image
run: | run: |
eval $(ssh-agent -s) eval $(ssh-agent -s)
echo ${{ secrets.STORAGE_SSH_KEY }} > ./id_rsa echo "${{ secrets.STORAGE_SSH_KEY }}" > ./id_rsa
docker build --no-cache -f Dockerfile-builder -t builder:latest . docker build --no-cache -f Dockerfile-builder -t builder:latest .