Files
CI-CD-for-mods--example-/.gitea/workflows/test.yaml
T
LeterZP 66794010d2 hui
2026-05-23 13:17:08 +03:00

30 lines
522 B
YAML

name: pull
on:
push:
branches:
- main
tags:
- 'v*'
jobs:
pulling:
name: Pull repo
runs-on: ubuntu-latest
container:
image: alpine/git
volumes:
- /mnt/host/c/Apps/Programs/Docker/project:/workspace/LeterZP/project # путь поменяется по мере деплоя
defaults:
run:
working-directory: /workspace/LeterZP/project
steps:
- name: pull changes to destination repo
run: |
git pull