af 2026 #20
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Deploy Client | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - dev | |
| jobs: | |
| deploy: | |
| if: "!startsWith(github.event.head_commit.message, '[skip ci]')" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup SSH key | |
| run: | | |
| mkdir -p ~/.ssh | |
| echo "${{ secrets.DEPLOY_KEY }}" > ~/.ssh/id_rsa | |
| chmod 600 ~/.ssh/id_rsa | |
| ssh-keyscan -H ${{ secrets.DEPLOY_HOST }} >> ~/.ssh/known_hosts | |
| - name: Deploy via Git | |
| run: | | |
| BRANCH=${GITHUB_REF##*/} | |
| if [ "$BRANCH" != "main" ] && [ "$BRANCH" != "dev" ]; then | |
| echo "Branch $BRANCH not configured for deployment. Exiting." | |
| exit 0 | |
| fi | |
| DEPLOY_PATH=$([[ "$BRANCH" == "main" ]] && echo "${{ secrets.DEPLOY_PATH }}" || echo "${{ secrets.DEPLOY_PATH_DEV }}") | |
| ssh -o StrictHostKeyChecking=no ${{ secrets.DEPLOY_USER }}@${{ secrets.DEPLOY_HOST }} \ | |
| "mkdir -p \"$DEPLOY_PATH\"; \ | |
| if [ -d \"$DEPLOY_PATH/.git\" ]; then \ | |
| echo 'Pulling latest changes...'; \ | |
| cd \"$DEPLOY_PATH\" && git fetch --all && git reset --hard origin/$BRANCH; \ | |
| else \ | |
| echo 'Cloning repo...'; \ | |
| git clone -b $BRANCH https://github.com/mppnet/frontend.git \"$DEPLOY_PATH\"; \ | |
| fi" |