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

TypeWord updates and endpoint (#56) #56

TypeWord updates and endpoint (#56)

TypeWord updates and endpoint (#56) #56

Workflow file for this run

name: Deploy-main
on:
push:
branches: ["main"]
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-main.sh
fi