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