From 2c0a9dbe96daf610b5d87775416781fdcc1a13e4 Mon Sep 17 00:00:00 2001 From: Andy Rae Date: Thu, 5 Sep 2024 10:52:23 +0100 Subject: [PATCH] Fix https://github.com/actions/upload-artifact/issues/602 --- .github/workflows/deploy.production.yml | 2 ++ .github/workflows/deploy.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/deploy.production.yml b/.github/workflows/deploy.production.yml index 93c02fdf4..100d9d1ff 100644 --- a/.github/workflows/deploy.production.yml +++ b/.github/workflows/deploy.production.yml @@ -46,6 +46,7 @@ jobs: with: name: functionsapp path: ${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }} + include-hidden-files: true build-and-publish-web: runs-on: 'ubuntu-latest' @@ -112,6 +113,7 @@ jobs: with: path: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }}/.next/standalone name: frontendwebapp + include-hidden-files: true # Deploy Workers Production deploy-workers-production: diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 8e498feeb..1c8313449 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -48,6 +48,7 @@ jobs: with: name: functionsapp path: ${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }} + include-hidden-files: true build-and-publish-web: runs-on: 'ubuntu-latest' @@ -114,6 +115,7 @@ jobs: with: path: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }}/.next/standalone name: frontendwebapp + include-hidden-files: true # Deploy Workers Dev deploy-workers-dev: