Skip to content

Commit

Permalink
Fix recursive path of zip
Browse files Browse the repository at this point in the history
  • Loading branch information
serivesmejia committed Oct 8, 2024
1 parent b4e3b60 commit 5594e6b
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/build_natives.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ jobs:

- name: Zip Files
run: |
zip -r apriltagdesktop-natives.zip ${{github.workspace}}/artifacts
cd ${{github.workspace}}/artifacts
zip -r apriltagdesktop-natives.zip .
- uses: marvinpinto/action-automatic-releases@latest
with:
Expand All @@ -103,7 +104,4 @@ jobs:
prerelease: true
title: Natives from ${{github.ref}}
files: |
${{github.workspace}}/artifacts/*.dll
${{github.workspace}}/artifacts/*.so
${{github.workspace}}/artifacts/*.dylib
apriltagdesktop-natives.zip
${{github.workspace}}/artifacts/*

0 comments on commit 5594e6b

Please sign in to comment.