Pull errors out into the main system for easy tailing

This commit is contained in:
Christbru 2025-10-18 21:21:48 -05:00
commit 17679c609e
3 changed files with 12 additions and 7 deletions

View file

@ -39,8 +39,8 @@ jobs:
context: ./web-app
push: true
tags: ghcr.io/${{ steps.repo_name.outputs.name }}/web-app:${{ github.sha }}
cache-from: type=gha
cache-to: type=gha,mode=max
cache-from: type=gha,scope=web-app
cache-to: type=gha,mode=max,scope=web-app
- name: Build and push Rust engine image ⚙️
uses: docker/build-push-action@v6
@ -48,8 +48,8 @@ jobs:
context: ./rust-engine
push: true
tags: ghcr.io/${{ steps.repo_name.outputs.name }}/rust-engine:${{ github.sha }}
cache-from: type=gha
cache-to: type=gha,mode=max
cache-from: type=gha,scope=rust-engine
cache-to: type=gha,mode=max,scope=rust-engine
- name: Ensure remote deploy directory exists
uses: appleboy/ssh-action@v1.0.3