 ff3f12a350
			
		
	
	
	ff3f12a350
	
	
	
		
			
			- replace `code.forgejo.org` ->`data.forgejo.org` on docker images - add `https://data.forgejo.org/` to actions where missing Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6703 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> Co-authored-by: Michael Kriese <michael.kriese@visualon.de> Co-committed-by: Michael Kriese <michael.kriese@visualon.de>
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			409 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			409 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| runs:
 | |
|   using: "composite"
 | |
|   steps:
 | |
|     - run: |
 | |
|         su forgejo -c 'make deps-backend'
 | |
|     - uses: https://data.forgejo.org/actions/cache@v4
 | |
|       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
 |