mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-08-11 09:14:16 -04:00
* move dockerfiles to dedicated folder * consolidate docker related files to docker dir * update CI references * experimental omni style container * update makefile commands * update references * fix whitespace * single container docs * update build paths * adds omni style build * set context
65 lines
1.6 KiB
YAML
65 lines
1.6 KiB
YAML
name: Docker Nightly Production
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- mealie-next
|
|
|
|
concurrency:
|
|
group: nightly-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
backend-tests:
|
|
name: "Backend Server Tests"
|
|
uses: ./.github/workflows/partial-backend.yml
|
|
|
|
frontend-tests:
|
|
name: "Frontend and End-to-End Tests"
|
|
uses: ./.github/workflows/partial-frontend.yml
|
|
|
|
build-release:
|
|
name: Build Tagged Release
|
|
uses: ./.github/workflows/partial-builder.yml
|
|
needs:
|
|
- frontend-tests
|
|
- backend-tests
|
|
with:
|
|
tag: nightly
|
|
secrets:
|
|
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
notify-discord:
|
|
name: Notify Discord
|
|
needs:
|
|
- build-release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Discord notification
|
|
env:
|
|
DISCORD_WEBHOOK: ${{ secrets.DISCORD_NIGHTLY_WEBHOOK }}
|
|
uses: Ilshidur/action-discord@0.3.2
|
|
with:
|
|
args: "🚀 A New build of mealie:api-nightly and mealie:frontend-nightly is available"
|
|
|
|
deploy-demo:
|
|
runs-on: ubuntu-latest
|
|
name: Deploy Demo
|
|
needs:
|
|
- build-release
|
|
steps:
|
|
- name: Clean and Deploy Demo
|
|
uses: appleboy/ssh-action@master
|
|
with:
|
|
host: ${{ secrets.DEMO_SERVER_IP }}
|
|
username: ${{ secrets.DEMO_SERVER_USER }}
|
|
key: ${{ secrets.DEMO_SERVER_SSH_KEY }}
|
|
port: ${{ secrets.DEMO_SERVER_PORT }}
|
|
script_stop: true
|
|
script: |
|
|
cd ~/docker/mealie
|
|
docker-compose pull
|
|
docker-compose down -v
|
|
docker-compose up -d
|