diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 0bccb1e..d75cc40 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -29,11 +29,12 @@ jobs: args: inspect "build/${{ env.PBO_NAME }}" - name: Upload PBO as artifact - uses: https://github.com/christopherHX/gitea-upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: ${{ env.PBO_NAME }} path: build/${{ env.PBO_NAME }} if-no-files-found: error + archive: false deploy: if: false @@ -41,7 +42,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Download PBO artifact - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: name: ${{ env.PBO_NAME }}