Skip to content

Commit

Permalink
release #89
Browse files Browse the repository at this point in the history
  • Loading branch information
yousefvand committed Nov 30, 2024
1 parent 262c944 commit c9a44d4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ jobs:
OUTPUT_DIR="${{ github.workspace }}/output"
mkdir -p $OUTPUT_DIR
tar -czvf $OUTPUT_DIR/Notepad--_ubuntu.tar.gz -C $BUILD_DIR .
ls -l $OUTPUT_DIR
echo "Packaging completed. Listing output directory:"
ls -al $OUTPUT_DIR
- name: Upload Ubuntu Artifact
if: matrix.os == 'ubuntu-latest'
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -81,7 +82,8 @@ jobs:
OUTPUT_DIR="${{ github.workspace }}/output"
mkdir -p $OUTPUT_DIR
zip -r $OUTPUT_DIR/Notepad--_macos.zip $BUILD_DIR
ls -l $OUTPUT_DIR
echo "Packaging completed. Listing output directory:"
ls -al $OUTPUT_DIR
- name: Upload macOS Artifact
if: matrix.os == 'macos-latest'
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -125,6 +127,7 @@ jobs:
$OUTPUT_DIR="${{ github.workspace }}\\output"
mkdir $OUTPUT_DIR
Compress-Archive -Path "$BUILD_DIR\\*" -DestinationPath "$OUTPUT_DIR\\Notepad--_windows.zip"
echo "Packaging completed. Listing output directory:"
Get-ChildItem -Path $OUTPUT_DIR
shell: pwsh
- name: Upload Windows Artifact
Expand Down

0 comments on commit c9a44d4

Please sign in to comment.