From b18f254b3377fd43bba8a6f3e5be66385fc8208f Mon Sep 17 00:00:00 2001 From: Flummi Date: Sun, 4 Jun 2023 13:56:57 +0200 Subject: [PATCH] release action --- .gitea/workflows/build.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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}}'