1
0
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2025-09-15 18:56:59 +00:00

ci: move composite workflow location

otherwise, they unfortunately display in the Forgejo UI with an error message
This commit is contained in:
Otto Richter 2024-09-30 02:06:28 +02:00
parent de99a9c93e
commit e6b84f9191
4 changed files with 18 additions and 18 deletions

View file

@ -0,0 +1,15 @@
runs:
using: "composite"
steps:
- run: |
su forgejo -c 'make deps-backend'
- uses: actions/cache@v4
id: cache-backend
with:
path: '/workspace/forgejo/forgejo/gitea'
key: backend-build-${{ github.sha }}
- if: steps.cache-backend.outputs.cache-hit != 'true'
run: |
su forgejo -c 'make backend'
env:
TAGS: bindata