Skip to content

Commit

Permalink
Create project folder if it doesn't exist
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeto143 committed Mar 1, 2024
1 parent 45f8a1a commit fe850d0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ jobs:
ssh-add - <<< "${{ secrets.DEPLOY_PRIVATE_KEY }}" &&
ssh -o StrictHostKeyChecking=no ${DEPLOY_USER}@${DEPLOY_HOST} -C
"
echo \"${{ secrets.BOT_CONFIG }}\" > \${HOME}/${SERVICE_NAME}/5m5v-config.yaml
mkdir -p \${HOME}/${SERVICE_NAME} &&
echo \"${{ secrets.BOT_CONFIG }}\" > \${HOME}/${SERVICE_NAME}/5m5v-config.yaml &&
docker pull ${{ steps.meta.outputs.tags }} &&
docker rm -f ${SERVICE_NAME} &&
docker run -d \
Expand Down

0 comments on commit fe850d0

Please sign in to comment.