diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 6d6b877..8321f0d 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -28,7 +28,14 @@ jobs: - name: Build Web run: godot --headless --export-release "Web" build/spacel.html - - uses: actions/upload-artifact@v4 + - name: Create Release + uses: actions/gitea-release@v1 with: - name: build-${{ env.BUILD_NUM }} - path: build/ \ No newline at end of file + token: ${{ secrets.GITEA_TOKEN }} + tag_name: build-${{ env.BUILD_NUM }} + release_name: Build ${{ env.BUILD_NUM }} + files: | + build/spacel.exe + build/spacel.x86_64 + build/spacel.apk + build/spacel.html \ No newline at end of file