From bde4f89e51c7865048aa8a2f41529a293de92ad6 Mon Sep 17 00:00:00 2001 From: Cantibra Date: Wed, 6 May 2026 08:37:34 +0200 Subject: [PATCH] 16 --- .gitea/workflows/release.yml | 13 +++++++++++++ .gitea/workflows/step1.yml | 15 +++++---------- 2 files changed, 18 insertions(+), 10 deletions(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 36ca047..d80d174 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -23,6 +23,19 @@ jobs: /usr/bin/echo "Version: ${VERSION}" /usr/bin/echo "Branch: ${{ matrix.branch }}" /usr/bin/echo "Runner: ${{ matrix.runner }}" + - name: Step 1 + env: + VERSION: ${{ steps.environment.outputs.version }} + run: | + /usr/bin/fallocate -l 64M "./test-${VERSION}.tmp" + - name: Step 3 + uses: https://github.com/christopherhx/gitea-upload-artifact@v7 + with: + name: test-${{ steps.environment.outputs.version }}.tmp + path: ./test-${{ steps.environment.outputs.version }}.tmp + if-no-files-found: error + overwrite: true + archive: false job2: needs: - job1 diff --git a/.gitea/workflows/step1.yml b/.gitea/workflows/step1.yml index 9c8e794..c47124d 100644 --- a/.gitea/workflows/step1.yml +++ b/.gitea/workflows/step1.yml @@ -1,4 +1,4 @@ -name: Step1 +name: Step 1 on: workflow_call: inputs: @@ -25,12 +25,7 @@ jobs: /usr/bin/echo "Runner: ${{ matrix.runner }}" /usr/bin/echo "Version: ${{ inputs.VERSION }}" - name: Step 2 - run: | - /usr/bin/echo "Kernel: ${{ matrix.kernel }}" - /usr/bin/echo "Runner: ${{ matrix.runner }}" - /usr/bin/echo "Version: ${{ inputs.VERSION }}" - - name: Step 3 - run: | - /usr/bin/echo "Kernel: ${{ matrix.kernel }}" - /usr/bin/echo "Runner: ${{ matrix.runner }}" - /usr/bin/echo "Version: ${{ inputs.VERSION }}" \ No newline at end of file + uses: https://gitea.com/actions/download-artifact@v3-node20 + with: + name: test-${{ inputs.VERSION }}.tmp + skip-decompress: true