split out repo
This commit is contained in:
19
.gitea/workflows/update-repo.yml
Normal file
19
.gitea/workflows/update-repo.yml
Normal file
@@ -0,0 +1,19 @@
|
||||
name: Update Repository
|
||||
on:
|
||||
workflow_call:
|
||||
|
||||
jobs:
|
||||
update-repo-folder:
|
||||
runs-on: home-server
|
||||
steps:
|
||||
- name: checkout repo
|
||||
working-directory: /home/gitea-runner
|
||||
run: |
|
||||
if [ -d "infrastructure" ]; then
|
||||
cd infrastructure
|
||||
echo "Infrastructure folder exists. Resetting to the most recent commit."
|
||||
git reset --hard HEAD
|
||||
git pull https://x-access-token:${{ secrets.GITEA_TOKEN }}@git.alexmickelson.guru/${{ gitea.repository }} $(git rev-parse --abbrev-ref HEAD)
|
||||
else
|
||||
git clone https://x-access-token:${{ secrets.GITEA_TOKEN }}@git.alexmickelson.guru/${{ gitea.repository }}.git
|
||||
fi
|
||||
Reference in New Issue
Block a user