From 865769b5f4f791fc09758d6a859ecda3936112d9 Mon Sep 17 00:00:00 2001 From: Mykola Skrynnyk <45297092+mykolaskrynnyk@users.noreply.github.com> Date: Wed, 11 Sep 2024 16:57:50 +0200 Subject: [PATCH] CI: fix the upload issue for `.streamlit/config.toml` Due to a [recent change](https://github.com/actions/upload-artifact/issues/602), hidden files are no longer uploaded by default. --- .github/workflows/azure-webapps-python.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/azure-webapps-python.yml b/.github/workflows/azure-webapps-python.yml index f991c53..76fd324 100644 --- a/.github/workflows/azure-webapps-python.yml +++ b/.github/workflows/azure-webapps-python.yml @@ -46,6 +46,7 @@ jobs: uses: actions/upload-artifact@v3 with: name: python-app + include-hidden-files: true path: | . !venv/ # Exclude the virtual environment if it exists