From b4448ce83c182570ab866f0e0fe2495eccdf0b0c Mon Sep 17 00:00:00 2001 From: James Rich <2199651+jamesarich@users.noreply.github.com> Date: Wed, 1 Oct 2025 06:59:45 -0500 Subject: [PATCH] ci(release): simplify artifact paths for GitHub Release (#3267) Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com> --- .github/workflows/release.yml | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 487748733..7821db0d0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -220,28 +220,13 @@ jobs: with: path: ./artifacts - - name: Get artifact paths - id: artifact_paths - run: | - paths="" - if [ -f ./artifacts/google-aab/app-google-release.aab ]; then - paths="${paths} ./artifacts/google-aab/app-google-release.aab" - fi - if [ -f ./artifacts/google-apk/app-google-release.apk ]; then - paths="${paths} ./artifacts/google-apk/app-google-release.apk" - fi - if [ -f ./artifacts/fdroid-apk/app-fdroid-release.apk ]; then - paths="${paths} ./artifacts/fdroid-apk/app-fdroid-release.apk" - fi - echo "paths=${paths}" >> $GITHUB_OUTPUT - - name: Create GitHub Release uses: softprops/action-gh-release@v2 with: tag_name: v${{ needs.prepare-build-info.outputs.APP_VERSION_NAME }} name: ${{ github.ref_name }} generate_release_notes: true - files: ${{ steps.artifact_paths.outputs.paths }} + files: ./artifacts/*/* draft: true prerelease: true env: