-
Notifications
You must be signed in to change notification settings - Fork 0
Add gh actions #10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add gh actions #10
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This pull request adds a GitHub Actions workflow to build the Pebble app. Key changes include:
- Triggering builds on push and pull_request events to the master branch
- Defining a build job that checks out the repository, creates specific build directories, runs the build process inside a Docker container, and uploads the resulting artifact.
.github/workflows/main.yaml
Outdated
| - name: Check out repo | ||
| uses: actions/checkout@v2 | ||
| - name: Create build directories | ||
| run: mkdir -p build/{aplite,basalt,chalk,diorite,js,src,c4che,emery,include} |
Copilot
AI
Mar 12, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The directory name 'c4che' may be a typo. If the intention is to create a 'cache' directory, please update the name accordingly.
| run: mkdir -p build/{aplite,basalt,chalk,diorite,js,src,c4che,emery,include} | |
| run: mkdir -p build/{aplite,basalt,chalk,diorite,js,src,cache,emery,include} |
cameronaaron
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
…ment, names built application properly
No description provided.