This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | |
permissions: | |
contents: read | |
packages: write | |
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: "🚀 New builds of ghcr.io/mealie-recipes/mealie:nightly" |