mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2026-01-19 03:11:30 +00:00
v
This commit is contained in:
parent
683d0565d7
commit
f55ece1818
19
.github/workflows/cache-verify.yml
vendored
19
.github/workflows/cache-verify.yml
vendored
@ -7,6 +7,25 @@ on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build-backend-image:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: docker/setup-buildx-action@v3
|
||||
- name: Build backend image
|
||||
uses: docker/build-push-action@v5
|
||||
with:
|
||||
context: ./backend
|
||||
file: ./backend/Dockerfile
|
||||
target: build
|
||||
push: false
|
||||
outputs: type=docker,dest=/tmp/backend.tar
|
||||
- name: Upload backend image
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: backend-image
|
||||
path: /tmp/backend.tar
|
||||
|
||||
verify-summary:
|
||||
runs-on: ubuntu-latest
|
||||
needs: [verify-cache, verify-backend, verify-webapp]
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user