Skip to content

Update admin_topnav.blade.php #8

Update admin_topnav.blade.php

Update admin_topnav.blade.php #8

Workflow file for this run

name: Productive / Deployment Build
on:
push:
branches:
- 'master'
jobs:
prod_build:
runs-on: ubuntu-latest
steps:
# Checkout the source code
- name: 🛎️ Checkout
uses: actions/checkout@v4
- name: 🔐 Login to Docker Hub
uses: docker/login-action@v3
with:
registry: registry.cevi.tools
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: 🧹 Create Environment File
run: |
touch .env
echo "${{ secrets.ENV_FILE }}" >> .env
- name: 🏗️ Build the stack
run: docker compose -f docker-compose.prod.yml build
- name: 🚀 Push containers to registry
run: docker compose -f docker-compose.prod.yml push