CI-Test/.gitea/workflows/test.yml
Workflow config file is invalid. Please check your config file: yaml: line 9: mapping values are not allowed in this context
2023-05-18 18:14:55 +02:00

19 lines
434 B
YAML

name: Build and push image
on:
push:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- 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
run: |
docker build -t rynomarree/self-hosted-deployment:latest .