From 3f6b3ebabd433eea1def313fa8cdc1623ad027ea Mon Sep 17 00:00:00 2001 From: Alex Zhu Date: Wed, 23 Oct 2024 22:49:47 -0400 Subject: [PATCH] Moving install frontend step after nodebb setup --- .github/workflows/azure-deploy-f24.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/azure-deploy-f24.yml b/.github/workflows/azure-deploy-f24.yml index 8c0ade2cc4..dd70208a01 100644 --- a/.github/workflows/azure-deploy-f24.yml +++ b/.github/workflows/azure-deploy-f24.yml @@ -32,10 +32,6 @@ jobs: with: node-version: '20.17.0' - - name: Install frontend repo - run: | - npm install https://github.com/CMU-313/nodebb-frontend-f24-codebb.git - - name: Set up NodeBB run: | ./nodebb setup '{"url":"nodebb-codebb.azurewebsites.net:443", @@ -47,6 +43,10 @@ jobs: "redis:host": "${{ secrets.REDIS_HOST }}", "redis:port": "6379", "redis:password": "${{ secrets.REDIS_PASSWORD }}" }' + + - name: Install frontend repo + run: | + npm install https://github.com/CMU-313/nodebb-frontend-f24-codebb.git - name: 'Deploy to Azure Web App' id: deploy-to-webapp