From e87182649de3625e4b63f2f5e701462f60c41a5c Mon Sep 17 00:00:00 2001 From: Jordon de Hoog Date: Wed, 13 Nov 2024 11:05:14 -0500 Subject: [PATCH] try to list release files --- .github/workflows/release.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bda4a58..c17cf1e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -199,14 +199,16 @@ jobs: name: web path: ./dist - - name: Display downloaded files - run: ls -R ./dist - - - name: Unzip web build artifacts + - name: Copy web build artifacts run: | + # TODO This is broken and not publishing correctly. a manual release is required after this runs mkdir -p app/build/dist/wasmJs/productionExecutable - cp -r ./dist/* app/build/dist/wasmJs/productionExecutable/ - rm -rf ./dist + echo "Source directory contents:" + ls -la ./dist/ + echo "Copying files..." + cp -rv ./dist/* app/build/dist/wasmJs/productionExecutable/ + echo "Destination directory contents:" + ls -la app/build/dist/wasmJs/productionExecutable/ - name: Deploy to production uses: FirebaseExtended/action-hosting-deploy@v0