Skip to content

Commit

Permalink
Building frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunoCunha-19 committed May 18, 2024
1 parent b33a0eb commit 695c640
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ jobs:
- name: Build Authorization Server With Maven
run: mvn -B package --file authorization_server/pom.xml

- name: Build Frontend with Angular
run: |
cd client
npm install
npm run build --prod
- name: Upload Resource Server Artifact
uses: actions/upload-artifact@v3
with:
Expand All @@ -29,6 +35,11 @@ jobs:
with:
name: authorization-server-artifact
path: authorization_server/target/*.jar
- name: Upload Frontend Artifact
uses: actions/upload-artifact@v3
with:
name: frontend-artifact
path: client/dist/*

test:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 695c640

Please sign in to comment.