mirror of
https://github.com/icereed/paperless-gpt.git
synced 2025-03-13 13:18:02 -05:00
Merge a4bc82f71f
into 32cc3d2794
This commit is contained in:
commit
e84e5c9bf7
1 changed files with 4 additions and 1 deletions
5
.github/workflows/docker-build-and-push.yml
vendored
5
.github/workflows/docker-build-and-push.yml
vendored
|
@ -58,6 +58,9 @@ jobs:
|
|||
build-and-push:
|
||||
runs-on: ubuntu-latest
|
||||
needs: test
|
||||
strategy:
|
||||
matrix:
|
||||
platform: [linux/amd64, linux/arm64, linux/arm/v7]
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
@ -91,7 +94,7 @@ jobs:
|
|||
uses: docker/build-push-action@v6
|
||||
with:
|
||||
context: .
|
||||
platforms: linux/amd64,linux/arm64
|
||||
platforms: ${{ matrix.platform }}
|
||||
push: ${{ github.event_name != 'pull_request' }}
|
||||
cache-from: type=gha
|
||||
cache-to: type=gha,mode=max
|
||||
|
|
Loading…
Reference in a new issue