From 3db54a0748eaab145225ddf0a6fbdc113f41d7d4 Mon Sep 17 00:00:00 2001 From: arafaysaleem Date: Mon, 7 Jun 2021 17:09:20 -0700 Subject: [PATCH] ci(Actions): Fix regex for upload artifact pattern matching Signed-off-by: arafaysaleem --- .github/workflows/PR-merge-build-release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/PR-merge-build-release.yaml b/.github/workflows/PR-merge-build-release.yaml index 307069f..2440d5f 100644 --- a/.github/workflows/PR-merge-build-release.yaml +++ b/.github/workflows/PR-merge-build-release.yaml @@ -41,7 +41,7 @@ jobs: uses: ncipollo/release-action@v1.8.6 with: tag: "${{ steps.generate_tag.outputs.new_tag }}" - artifacts: "build/app/outputs/apk/release/app-arm*.apk" + artifacts: "build/app/outputs/apk/release/*.apk" name: "Release ${{ steps.generate_tag.outputs.new_tag }}" body: "${{ steps.generate_tag.outputs.changelog }}" token: ${{ secrets.GITHUB_TOKEN }}