All checks were successful
Redeploy landing on Push / Explore-Gitea-Actions (push) Successful in 7s
14 lines
402 B
YAML
14 lines
402 B
YAML
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" |