Hail mary failed, moving back to older ubuntu???
Some checks failed
Publish Website / publish (push) Failing after 4m6s

This commit is contained in:
Akshay
2025-07-23 02:02:14 -04:00
parent 69c9293f31
commit 36f475166b

View File

@@ -8,13 +8,9 @@ on:
jobs: jobs:
publish: publish:
runs-on: ubuntu-latest runs-on: ubuntu-22.04
steps: steps:
- name: Update and Upgrade
run: |
apt update
apt upgrade -y
# 1. Checkout the website repository (your app code) # 1. Checkout the website repository (your app code)
# ------------------------------------------------------------ # ------------------------------------------------------------
- name: Checkout website repo - name: Checkout website repo
@@ -64,8 +60,6 @@ jobs:
# ------------------------------------------------------------ # ------------------------------------------------------------
- name: Stop existing stack (ignore if none) - name: Stop existing stack (ignore if none)
shell: bash shell: bash
env:
COMPOSE_PROFILES="*"
run: | run: |
cd ./website cd ./website
docker compose down --remove-orphans || true docker compose down --remove-orphans || true
@@ -74,6 +68,5 @@ jobs:
shell: bash shell: bash
working-directory: website working-directory: website
run: | run: |
docker buildx bake -f bake.json
docker compose build --no-cache docker compose build --no-cache
docker compose up -d docker compose up -d