diff --git a/.github/workflows/github-release.yml b/.github/workflows/github-release.yml index 57cfc47..2c9b519 100644 --- a/.github/workflows/github-release.yml +++ b/.github/workflows/github-release.yml @@ -2,8 +2,9 @@ name: Create GitHub Release on: push: - tags: - - '*' + branches: ["master"] + # tags: + # - '*' workflow_dispatch: @@ -62,13 +63,14 @@ jobs: uses: actions/download-artifact@v2 with: name: build-artifacts + path: ./build-artifacts - name: Release uses: softprops/action-gh-release@v2 with: - files: | - app-arm64-v8a-prod-release.apk - app-armeabi-v7a-prod-release.apk - app-x86_64-prod-release.apk - app-prod-release.aab + files: | + ./build-artifacts/app-arm64-v8a-prod-release.apk + ./build-artifacts/app-armeabi-v7a-prod-release.apk + ./build-artifacts/app-x86_64-prod-release.apk + ./build-artifacts/app-prod-release.aab env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}