-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: rename action and update README.md
Signed-off-by: Payam Zahedi <[email protected]>
- Loading branch information
Showing
2 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# oh-action | ||
The `oh-action` is a GitHub Action that streamlines OpenHarmony development workflows by setting up the necessary development environment. It automatically installs the OpenHarmony SDK and provides essential command-line tools, enabling developers to build, test, and manage their OpenHarmony applications in CI/CD pipelines. | ||
# oh-app-action | ||
The `oh-app-action` is a GitHub Action that streamlines OpenHarmony development workflows by setting up the necessary development environment. It automatically installs the OpenHarmony SDK and provides essential command-line tools, enabling developers to build, test, and manage their OpenHarmony applications in CI/CD pipelines. | ||
|
||
## Requirements | ||
- macOS runner (`runs-on: macos-latest`) | ||
|
@@ -41,7 +41,7 @@ jobs: | |
uses: actions/checkout@v4 | ||
|
||
- name: Setup OpenHarmony environment | ||
- uses: Snapp-Mobile/[email protected] | ||
- uses: eclipse-oniro4openharmony/oh-app[email protected] | ||
|
||
- name: Install dependencies | ||
run: ohpm install --all | ||
|
@@ -92,8 +92,8 @@ jobs: | |
- name: Checkout code | ||
uses: actions/checkout@v4 # Checkout the repository content to the runner | ||
- name: Build Project Using oh-action | ||
uses: Snapp-Mobile/oh-action@main | ||
- name: Build Project Using oh-app-action | ||
uses: eclipse-oniro4openharmony/oh-app-action@main | ||
with: | ||
working-directory: ./Sample | ||
|