All checks were successful
Deployment of Meme Team Factorio to PreProd Environment (RASPI) / Deploy_Traefik (push) Successful in 31s
18 lines
528 B
YAML
18 lines
528 B
YAML
name: Deployment of Meme Team Factorio to PreProd Environment (RASPI)
|
|
run-name: Deployment of Meme Team Factorio to PreProd by ${{ gitea.actor }}
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
Deploy_Traefik:
|
|
runs-on: raspi # <- Name of the Tag the Runner has
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4
|
|
- name: List files in the repository
|
|
run: |
|
|
ls ${{ gitea.workspace }}
|
|
- name: Deploy Traefik
|
|
run: docker compose -f docker-compose.yml up -d |