feat: add Docker deployment workflow for building and deploying the application
Some checks failed
Build and Deploy / build-and-deploy (push) Failing after 41s
Build and Push Docker Image / build (push) Has been cancelled

This commit is contained in:
Felix Schlusche
2025-10-24 16:04:42 +02:00
parent c9ff811a2a
commit ea4bda3658
2 changed files with 55 additions and 6 deletions

View File

@@ -22,13 +22,13 @@ jobs:
- name: Cache Gitea Actions
uses: actions/cache@v3
with:
# The path to the directory that should be cached
path: /root/.cache/act
# A key to identify the cache
key: ${{ runner.os }}-gitea-actions-${{ hashFiles(''.workflow) }}
# A fallback key to use if the primary key doesn't match
path: |
~/.cache/actcache
~/.cache/act
key: ${{ runner.os }}-act-${{ hashFiles('**/.gitea/workflows/*.yml') }}
restore-keys: |
${{ runner.os }}-gitea-actions-
${{ runner.os }}-act-
- name: Checkout code
uses: actions/checkout@v4