From 505871c004f0f1d2dce219ead8a1aaa5c04afea2 Mon Sep 17 00:00:00 2001 From: Andrew Turner Date: Mon, 26 Aug 2024 14:14:36 -0400 Subject: [PATCH] Fixed order of gh actions to copy then build --- .github/workflows/deploy-pages.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy-pages.yml b/.github/workflows/deploy-pages.yml index 28a10fd..d890180 100644 --- a/.github/workflows/deploy-pages.yml +++ b/.github/workflows/deploy-pages.yml @@ -20,11 +20,11 @@ jobs: - name: install deps run: npm ci --legacy-peer-deps - - name: build components - run: npm run build - - name: copy assets run: cp -r node_modules/@esri/calcite-components/dist/calcite/* ./src/assets/ + + - name: build components + run: npm run build - name: Deploy 🚀 uses: JamesIves/github-pages-deploy-action@v4.3.3