Initial commit: Portfolio mit LaTeX-Dokumentation
Deploy Portfolio / deploy (push) Successful in 7s

This commit is contained in:
2026-05-10 12:35:20 +02:00
commit 6f9e92c55f
36 changed files with 6311 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
name: Deploy Portfolio
on:
push:
branches: [ "master" ]
jobs:
deploy:
runs-on: ubuntu-latest
container:
image: catthehacker/ubuntu:act-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build and Deploy
run: |
docker build -t portfolio:latest .
docker stop portfolio 2>/dev/null || true
docker rm portfolio 2>/dev/null || true
docker run -d --name portfolio -p 8081:80 portfolio:latest