School/.gitea/workflows/deploy.yml
Chewico 9bc284b43b
Some checks failed
Deploy to School / deploy (push) Failing after 1s
Test
2025-09-02 23:08:16 +02:00

26 lines
445 B
YAML

name: Deploy to School
on:
push:
branches: [main]
jobs:
deploy:
runs-on: host
steps:
- name: Install git on Alpine runner
run: |
apk update
apk add git
- name: Go to repo
run: |
cd /gits/School
- name: Tell files
run: |
cd /gits/School
ls
- name: Pull repo
run: |
cd /gits/School
git pull origin main