codemagic-ci-cd / codemagic-docs

Here you’ll find some essential information for setting up CI/CD for your mobile apps with Codemagic.
https://docs.codemagic.io
MIT License
83 stars 121 forks source link

Renamed apk is not visible as artifacts in slack notification for download #2161

Closed hashirshoaeb closed 11 months ago

hashirshoaeb commented 11 months ago

Discussed in https://github.com/orgs/codemagic-ci-cd/discussions/2155

Originally posted by **hashirshoaeb** October 27, 2023 ### If you are looking for help, please confirm the following... - [X] I confirm I have searched the [Docs](https://docs.codemagic.io), [Codemagic Sample Projects](https://github.com/codemagic-ci-cd/codemagic-sample-projects), and GitHub [Discussions](https://github.com/orgs/codemagic-ci-cd/discussions). - [X] I confirm the software versions on my local computer match the ones in CI environment (e.g. Xcode version, Gradle version). See [here](https://docs.codemagic.io/troubleshooting/common-android-issues/#builds-work-locally-but-fail-on-codemagic) - [X] I confirm I am able to do a fresh clone of the repository and build the project on my local computer. ### Which mobile framework are you using? Flutter (Dart) ### Steps to reproduce I'm using workflow editor and added a post-build script, to rename the apk file and added it in artifacts but it is not visible in slack notification. here is my script: ```bash #!/bin/sh set -e set -x echo "renaming apk file to $CM_TAG"; if [ -n "$CM_TAG" ]; then mv build/app/outputs/flutter-apk/app-qa-release.apk build/app/outputs/flutter-apk/$CM_TAG.apk; cp build/app/outputs/flutter-apk/$CM_TAG.apk "$CM_EXPORT_DIR"; fi ``` ### Expected results Notification should have link for apk under artifacts ### Actual results #### slack notificaiton without script ![Screenshot 2023-10-27 at 9 44 22 AM](https://github.com/codemagic-ci-cd/codemagic-docs/assets/35165481/b7fa6559-5dd6-44d8-aeab-3c4af1f9e887) apk is visible under artifacts #### notification after renaming the file using script ![Screenshot 2023-10-27 at 9 46 12 AM](https://github.com/codemagic-ci-cd/codemagic-docs/assets/35165481/f9277b80-d6d0-48a1-8e52-2468953239b9) ### Build id (optional) _No response_
hashirshoaeb commented 11 months ago

Answered here: https://github.com/orgs/codemagic-ci-cd/discussions/2155