diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 5e89278..6384d15 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -33,7 +33,8 @@ jobs: run: ./gradlew build - name: capture build artifacts if: ${{ matrix.java == '17' }} # Only upload artifacts built from latest java on one OS - uses: actions/upload-artifact@v3 + uses: actions/release-action@main with: - name: Artifacts - path: build/libs/ + files: |- + build/libs/** + api_key: '${{secrets.RELEASE_TOKEN}}'