From 004ec2887724bc1e77aa65180a53260a0ad87001 Mon Sep 17 00:00:00 2001 From: Adrien Beaudouin <3679080+adr1enbe4udou1n@users.noreply.github.com> Date: Mon, 2 Jun 2025 23:52:47 +0200 Subject: [PATCH] init stage0 --- .gitea/workflows/build.yaml | 23 ++++++++--------------- 1 file changed, 8 insertions(+), 15 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index f331dbb..f73f98b 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -31,21 +31,14 @@ jobs: run: | make registry-bootstrap-stage0 REGISTRY_USERNAME=$CONTAINER_REGISTRY/okami101/stagex - # - name: Restore stage1 cache - # id: restore-stage1 - # uses: actions/cache/restore@v4 - # with: - # path: fetch/bootstrap/stage1 - # key: ${{ hashFiles('packages/bootstrap/stage1/package.toml') }} - # - name: Fetch stage1 - # run: | - # python3 ./src/fetch.py stage1 - # - name: Save stage1 cache - # id: save-stage1 - # uses: actions/cache/save@v4 - # with: - # path: fetch/bootstrap/stage1 - # key: ${{ hashFiles('packages/bootstrap/stage1/package.toml') }} + - name: Restore stage1 cache + uses: actions/cache@v4 + with: + path: fetch/bootstrap/stage1 + key: ${{ hashFiles('packages/bootstrap/stage1/package.toml') }} + - name: Fetch stage1 + run: | + python3 ./src/fetch.py stage1 # - name: Build stage1 # env: # CONTAINER_REGISTRY: ${{ vars.CONTAINER_REGISTRY }}