From 9724d0fb5ea65e2c865c6b905335076639b5ca6b Mon Sep 17 00:00:00 2001 From: Adrien Beaudouin <3679080+adr1enbe4udou1n@users.noreply.github.com> Date: Sat, 7 Jun 2025 17:27:46 +0200 Subject: [PATCH] add build --- .gitea/workflows/build.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 8aa6e01..7a7dff2 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -89,11 +89,16 @@ jobs: with: path: fetch/core/make key: make-${{ hashFiles('packages/core/make/package.toml') }} + - name: Restore buildx cache + uses: actions/cache@v4 + with: + path: /tmp/.buildx-cache + key: buildx-${{ hashFiles('packages/core/make/package.toml') }} - name: Build make env: CONTAINER_REGISTRY: ${{ vars.CONTAINER_REGISTRY }} run: | - make registry-core-make PROGRESS=plain BUILDER="docker buildx" PLATFORM=linux/arm64 REGISTRY_USERNAME=$CONTAINER_REGISTRY/okami101/stagex + make registry-core-make PROGRESS=plain BUILDER="docker buildx" PLATFORM=linux/amd64 REGISTRY_USERNAME=$CONTAINER_REGISTRY/okami101/stagex - name: Restore musl cache uses: actions/cache@v4