Skip to content

Commit

Permalink
Merge pull request #548 from hannesa2/MacOSArtifacts
Browse files Browse the repository at this point in the history
Fix MacOS release artifacts
  • Loading branch information
hannesa2 authored Sep 29, 2024
2 parents d46c8d9 + e73736b commit 9eb30ec
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,20 @@ jobs:
run: scripts/darwin/install.sh
- name: Build project
run: scripts/darwin/build.sh
- name: Artifact Creation
run: |
cd /Users/runner/work/dlt-viewer/dlt-viewer/build
mkdir -p dist
cp ../scripts/darwin/install.md dist
tar -czvf "dist/DLTViewer.tgz" -C /Users/runner/work/dlt-viewer/dlt-viewer/build/install .
- name: Archive artifact
run: zip DLT-macOS-${{ matrix.abi }}.zip -r build/dist
- name: Upload DLT artifact
- name: Archive artifact
uses: actions/upload-artifact@v4
if: ${{ success() }}
with:
name: DLT-Mac-${{ matrix.abi }}
path: DLT-macOS-${{ matrix.abi }}.zip
path: build/dist/DLTViewer*.tgz

buildLinux:
name: Build ${{ matrix.ubuntu }}
Expand Down

0 comments on commit 9eb30ec

Please sign in to comment.