17 lines
274 B
YAML
17 lines
274 B
YAML
name: Deploy to School
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-20.04:host
|
|
steps:
|
|
- name: Update School repo
|
|
run: |
|
|
apt update -y
|
|
apt install git -y
|
|
cd /gits/School
|
|
git pull origin main
|