From 9276b743c4d506d482ec999fbe2e98e907a71eed Mon Sep 17 00:00:00 2001 From: Hang Cui Date: Fri, 17 Oct 2025 15:52:33 -0700 Subject: [PATCH] Update repo --- .gitea/workflows/006_upload_artifact_files.yaml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/006_upload_artifact_files.yaml b/.gitea/workflows/006_upload_artifact_files.yaml index 4dfb39e..88435ca 100644 --- a/.gitea/workflows/006_upload_artifact_files.yaml +++ b/.gitea/workflows/006_upload_artifact_files.yaml @@ -1,4 +1,4 @@ -name: Upload Artifact +name: Upload Artifacts on: workflow_dispatch: @@ -13,12 +13,13 @@ jobs: - name: Create an artifact run: | ls -la ${{ github.workspace }} - echo "This is my artifact content." > artifact.txt - ls -la ${{ github.workspace }} + cd backend + echo "This is my artifact content." > artifacts.txt + ls -la ${{ github.workspace }}/backend - name: Upload artifact uses: actions/upload-artifact@v3 with: - name: build-artifact - path: artifact.txt + name: build-artifact # Folder name of artifact.txt + path: artifacts.txt retention-days: 5 # Optional: Set the retention period for the artifact \ No newline at end of file