Creating problems with Github Actions
See original GitHub issueWhen I use this plugin in my app and if I have Github Action setup, it ends up with following error:
* What went wrong:
A problem occurred configuring project ':app'.
> java.io.FileNotFoundException: The file '/home/runner/work/AppName/AppName/local.properties' could not be found
Issue Analytics
- State:
- Created 2 years ago
- Comments:8
Top Results From Across the Web
Create an issue · Actions · GitHub Marketplace
This GitHub Action creates a new issue based on an issue template file. Here's an example workflow that creates a new issue any...
Read more >Challenges with Github Actions - Medium
Challenges & solutions. Create a new branch for testing your workflow; Rename the workflow and each job. (I just append _test); Make sure...
Read more >GitHub Actions: Quirks, Issues, and Tips for Real-world CI/CD ...
Debugging job failures also is not yet officially supported, but various community projects make this possible. We've used Max Schmitt's action- ...
Read more >Updating GitHub issues from GitHub Actions - Stack Overflow
Finally, you could also create a script consuming the Github API service to update an ISSUE and execute the script using the run...
Read more >How to Build Your First JavaScript GitHub Action
Let's start by creating an empty GitHub repository called: PR-metadata-action . This will be the repository that we will use to store our ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
That’s because the
local.properties
file is not checked in the repository (as it shouldn’t). I recommend creating a defaults file with the keys used by your app but stub values that you can check in the repository. See configuration options. This strategy is used by the sample app in this repository.Closing this, please see my comment above as a way to resolve this issue. If another behavior is desired, please propose a solution and file a FR. Thanks!