diff --git a/.gitea/workflows/github-actions-demo.yml b/.gitea/workflows/github-actions-demo.yml index 9968099..cb202c3 100644 --- a/.gitea/workflows/github-actions-demo.yml +++ b/.gitea/workflows/github-actions-demo.yml @@ -16,3 +16,9 @@ jobs: run: | ls ${{ github.workspace }} - run: echo "🍏 This job's status is ${{ job.status }}." + - run: mkdir -p artifact + - run: echo hello > artifact/world.txt + - uses: actions/upload-artifact@v4 + with: + name: my-artifact + path: world.txt