mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2026-07-25 02:48:05 +00:00
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/13247 Reviewed-by: Gusted <gusted@noreply.codeberg.org>
15 lines
456 B
YAML
15 lines
456 B
YAML
runs:
|
|
using: "composite"
|
|
steps:
|
|
- run: |
|
|
su forgejo -c 'make deps-backend'
|
|
- uses: https://data.forgejo.org/actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
|
|
id: cache-backend
|
|
with:
|
|
path: ${{github.workspace}}/gitea
|
|
key: backend-build-${{ github.sha }}
|
|
- if: steps.cache-backend.outputs.cache-hit != 'true'
|
|
run: |
|
|
su forgejo -c 'make backend'
|
|
env:
|
|
TAGS: bindata
|