From 1884e26570ab75f6ef403a783d797dd7c74105db Mon Sep 17 00:00:00 2001 From: Arslan Date: Sun, 24 Nov 2024 02:12:39 +0100 Subject: [PATCH] instead copy streamlit_exe use mv --- .github/workflows/build-windows-executable-app.yaml | 4 ++-- .github/workflows/test-win-exe-w-embed-py.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-windows-executable-app.yaml b/.github/workflows/build-windows-executable-app.yaml index 406abe4..92b7454 100644 --- a/.github/workflows/build-windows-executable-app.yaml +++ b/.github/workflows/build-windows-executable-app.yaml @@ -248,10 +248,10 @@ jobs: run: | ./wix/heat.exe dir streamlit_exe -gg -sfrag -sreg -srd -template component -cg StreamlitExeFiles -dr INSTALLFOLDER -out streamlit_exe_files.wxs - - name: CopytoSrcDir + - name: Prepare SourceDir run: | mkdir SourceDir - cp -r streamlit_exe/* SourceDir + mv streamlit_exe/* SourceDir mv run_app.bat SourceDir cp dummy_license.rtf SourceDir diff --git a/.github/workflows/test-win-exe-w-embed-py.yaml b/.github/workflows/test-win-exe-w-embed-py.yaml index 8ea1fc7..0717d6f 100644 --- a/.github/workflows/test-win-exe-w-embed-py.yaml +++ b/.github/workflows/test-win-exe-w-embed-py.yaml @@ -70,10 +70,10 @@ jobs: run: | ./wix/heat.exe dir streamlit_exe -gg -sfrag -sreg -srd -template component -cg StreamlitExeFiles -dr INSTALLFOLDER -out streamlit_exe_files.wxs - - name: CopytoSrcDir + - name: Prepare SourceDir run: | mkdir SourceDir - cp -r streamlit_exe/* SourceDir + mv streamlit_exe/* SourceDir mv run_app.bat SourceDir cp dummy_license.rtf SourceDir