From 36f475166b932585b53aed9428647bf2f6154729 Mon Sep 17 00:00:00 2001 From: Akshay Date: Wed, 23 Jul 2025 02:02:14 -0400 Subject: [PATCH] Hail mary failed, moving back to older ubuntu??? --- .gitea/workflows/publish.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.gitea/workflows/publish.yml b/.gitea/workflows/publish.yml index e40e31e..c3141c8 100644 --- a/.gitea/workflows/publish.yml +++ b/.gitea/workflows/publish.yml @@ -8,13 +8,9 @@ on: jobs: publish: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - - name: Update and Upgrade - run: | - apt update - apt upgrade -y # 1. Checkout the website repository (your app code) # ------------------------------------------------------------ - name: Checkout website repo @@ -64,8 +60,6 @@ jobs: # ------------------------------------------------------------ - name: Stop existing stack (ignore if none) shell: bash - env: - COMPOSE_PROFILES="*" run: | cd ./website docker compose down --remove-orphans || true @@ -74,6 +68,5 @@ jobs: shell: bash working-directory: website run: | - docker buildx bake -f bake.json docker compose build --no-cache docker compose up -d