Skip to content
This repository was archived by the owner on Mar 21, 2026. It is now read-only.

bug fix

bug fix #107

Workflow file for this run

name: Deploy-dev
on:
push:
branches: ["dev"]
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: appleboy/ssh-action@master
with:
host: ${{ secrets.SERVER_HOST }}
username: ${{ secrets.SERVER_USERNAME }}
password: ${{ secrets.SERVER_PASSW }}
script: |
if [[ "${{ github.event.head_commit.message }}" == *"--nobuild"* ]]; then
echo "Detected --nobuild in commit message"
else
bash ~/update-dev.sh
fi