From 9dcd39f8466229dc87907099fd885f94b94b9fd6 Mon Sep 17 00:00:00 2001 From: Shamiul Mowla Date: Fri, 6 Sep 2024 11:39:28 -0400 Subject: [PATCH] Prod workflow artifact bug fix (#1176) * Add flag to add hidden directories to artifact. --- .github/workflows/prod.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/prod.yml b/.github/workflows/prod.yml index 45e02bb75..ceaca60e6 100644 --- a/.github/workflows/prod.yml +++ b/.github/workflows/prod.yml @@ -31,15 +31,17 @@ jobs: - name: Install dependencies run: npm install @octokit/rest semver - name: Upload sauce configs - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: sauce-config path: .sauce + include-hidden-files: true - name: Upload sauce ignore - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: sauce-ignore path: .sauceignore + include-hidden-files: true - name: Retrieve tags id: list-tags uses: actions/github-script@v7