Private
Public Access
1
0

setup runner
All checks were successful
Redeploy landing on Push / Explore-Gitea-Actions (push) Successful in 7s

This commit is contained in:
2025-12-22 13:59:59 +01:00
parent c8afedd703
commit ea43c144e0
2 changed files with 19 additions and 4 deletions

View File

@@ -0,0 +1,14 @@
name: Redeploy landing on Push
run-name: ${{ gitea.actor }} building image and redeploying container
on: [push]
jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- run: docker build -t mysite .
- run: echo "Building image"
- run: docker compose up -d
- run: echo "Redeployed site"