CI-Test/.gitea/workflows/test.yml

19 lines
434 B
YAML
Raw Normal View History

2023-05-18 16:07:04 +00:00
name: Build and push image
2023-05-18 15:48:04 +00:00
on:
2023-05-18 15:49:23 +00:00
push:
2023-05-18 15:48:04 +00:00
jobs:
2023-05-18 16:07:04 +00:00
deploy:
2023-05-18 16:13:43 +00:00
runs-on: ubuntu-latest
2023-05-18 16:14:55 +00:00
steps:
2023-05-18 16:07:04 +00:00
- name: Set git remote if not already set
run: git remote -v | grep -w gitea || git remote add gitea "./gitea/git/repositories/${GITHUB_REPOSITORY,,}.git"
- name: Checkout repo
run: git pull gitea main
- name: Deploy
2023-05-18 15:49:23 +00:00
run: |
2023-05-18 16:07:04 +00:00
docker build -t rynomarree/self-hosted-deployment:latest .