Started workflow definition
All checks were successful
Build Docker Image / Docker-Build (push) Successful in 2m55s

This commit is contained in:
2026-01-03 18:13:57 +01:00
parent 2f4c939e93
commit ff9b520449
4 changed files with 52 additions and 8 deletions

View File

@@ -7,9 +7,21 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone Repository
uses: actions/chekout@v4
uses: actions/checkout@v4
- name: Build docker image
run: |
docker build -t umbrella .
docker tag umbrella ${{ secrets.REGISTRY_PATH }}/umbrella:latest
docker tag umbrella ${{ secrets.REGISTRY_PATH }}/umbrella:latest
- name: Login to registry
uses: docker/login-action@v2
with:
registry: ${{ secrets.REGISTRY_PATH }}
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_PASS }}
- name: Push to registry
# if: startsWith(gitea.ref, 'refs/tags/')
run: |
docker push ${{ secrets.REGISTRY_PATH }}/umbrella:latest