diff --git a/.github/workflows/client.yml b/.github/workflows/client.yml index 7f70627..8b949cb 100644 --- a/.github/workflows/client.yml +++ b/.github/workflows/client.yml @@ -26,12 +26,16 @@ jobs: run: cd client && npm install - name: Build client - run: cd client && npm run build + run: | + cd client + npm run build - name: Deploy client - run: cd client && npm run deploy + run: | + cd client + npm run deploy env: REACT_APP_BASE_URI: ${{ secrets.REACT_APP_BASE_URI }} - with: + env: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./client/build diff --git a/client/src/services/tasks/taskBoards.js b/client/src/services/tasks/taskBoards.js index 21a24e9..d55387a 100644 --- a/client/src/services/tasks/taskBoards.js +++ b/client/src/services/tasks/taskBoards.js @@ -14,7 +14,6 @@ export const getAllBoards = async () => { }; export const createBoard = async (details) => { - console.log({details}); const token = getLocalStorageKey('token'); const url = process.env.REACT_APP_BASE_URI + '/api/v1/task-board/boards';