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