Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/shiv3679/A.I.D.E.N into main
Browse files Browse the repository at this point in the history
  • Loading branch information
shiv3679 committed Feb 29, 2024
2 parents 0edb5f5 + 9ec37f7 commit 3c8f723
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/firebase-hosting-merge.yml
Original file line number Diff line number Diff line change
@@ -11,10 +11,22 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm ci && npm run build
# Add a step to change the working directory to aiden_frontend
- name: Change working directory
run: cd aiden_frontend
# Specify the working directory for npm commands
- name: Install dependencies
run: npm ci
working-directory: ./aiden_frontend
- name: Build
run: npm run build
working-directory: ./aiden_frontend
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: '${{ secrets.GITHUB_TOKEN }}'
firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_AIDEN_SHIV }}'
channelId: live
projectId: aiden-shiv
# Specify the folder to deploy
publicDirectory: ./aiden_frontend/build

0 comments on commit 3c8f723

Please sign in to comment.