From d36ef2bdec8e901519a71908de769f59fe39c7a0 Mon Sep 17 00:00:00 2001 From: dany Date: Wed, 24 Jul 2024 13:27:31 +0200 Subject: [PATCH] Update .gitea/workflows/ci.yml --- .gitea/workflows/ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index d4b2b12..ed8d6f9 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -16,9 +16,24 @@ jobs: - name: List files in the repository run: | ls ${{ gitea.workspace }} + mkdir build + echo "tests" > build/application + - name: Save artifact + uses: actions/upload-artifact@v3 + with: + name: build + path: build/ + retention-days: 1 - run: echo "🍏 This job's status is ${{ job.status }}." tag-only-job: runs-on: ci-tools if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') + needs: Explore-Gitea-Actions steps: + - run: mkdir -p build + - uses: actions/download-artifact@master + with: + name: build + path: build + - run: tree . - run: echo "Generate release" \ No newline at end of file