mirror of
https://github.com/Macrame-App/Macrame
synced 2025-12-29 07:19:26 +00:00
Updated release scripts
This commit is contained in:
parent
3193127809
commit
05fdaa3d3a
2 changed files with 15 additions and 4 deletions
6
.github/workflows/windows-release.yml
vendored
6
.github/workflows/windows-release.yml
vendored
|
|
@ -32,6 +32,12 @@ jobs:
|
||||||
shell: cmd
|
shell: cmd
|
||||||
run: .\build-scripts\windows-build.bat
|
run: .\build-scripts\windows-build.bat
|
||||||
|
|
||||||
|
- name: Cleanup build-scripts directory
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
echo "Removing build-scripts directory..."
|
||||||
|
rmdir /s /q build-scripts
|
||||||
|
|
||||||
- name: Commit and push build artifacts
|
- name: Commit and push build artifacts
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
|
|
@ -36,10 +36,15 @@ cd ..
|
||||||
REM Step 3: Cleanup root directory of build files.
|
REM Step 3: Cleanup root directory of build files.
|
||||||
echo Cleaning up root directory...
|
echo Cleaning up root directory...
|
||||||
|
|
||||||
echo Removing directories: app, ui, and build-scripts
|
IF EXIST app (
|
||||||
rmdir /s /q app
|
echo Deleting app directory...
|
||||||
rmdir /s /q ui
|
rmdir /s /q app
|
||||||
rmdir /s /q build-scripts
|
)
|
||||||
|
|
||||||
|
IF EXIST ui (
|
||||||
|
echo Deleting ui directory...
|
||||||
|
rmdir /s /q ui
|
||||||
|
)
|
||||||
|
|
||||||
for %%F in (*) do (
|
for %%F in (*) do (
|
||||||
set "file=%%~nxF"
|
set "file=%%~nxF"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue