-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
314d998
commit 5c2afff
Showing
2 changed files
with
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
SECRETS_VARS: ${{ toJson(secrets) }} | ||
NG_CLI_ANALYTICS: "ci" | ||
|
||
permissions: | ||
contents: read # for checkout | ||
|
@@ -32,15 +33,25 @@ jobs: | |
distribution: 'adopt' | ||
cache: maven | ||
- name: Setup Node.js | ||
#uses: actions/setup-node@v2 | ||
#with: | ||
# node-version: 'lts/*' | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20.x | ||
- name: Install Angular CLI | ||
run: npm install -g @angular/cli | ||
- name: validate ng | ||
run: ng help | ||
- name: Build with Maven | ||
run: mvn -B package -DskipTests --file SpringBoot/Konex/pom.xml | ||
- name: setup semantic-release | ||
run: npm install -g semantic-release @semantic-release/git @semantic-release/changelog -D | ||
- name: show jar konex | ||
run: | | ||
ls SpringBoot/Konex/ | ||
ls SpringBoot/Konex/target | ||
- name: Build with Angular | ||
run: | | ||
npm run ng analytics off --prefix .\Angular\Konex\ | ||
npm install --prefix .\Angular\Konex\ | ||
npm run build --prefix .\Angular\Konex\ | ||
#- name: setup semantic-release | ||
# run: npm install -g semantic-release @semantic-release/git @semantic-release/changelog -D | ||
- name: release | ||
run: npx [email protected] |
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