Skip to content

Commit a5b1c00

Browse files
authored
Update release.yml
1 parent 1195caf commit a5b1c00

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,15 +103,13 @@ jobs:
103103
cmake -S . -B build
104104
cmake --build build -j8
105105
sudo cmake --install build
106-
mkdir -p ./build/dist
107-
cp -R ./build/iris.app ./build/dist
108106
- name: Generate artifact name
109107
id: generate-name
110108
run: |
111109
echo "::set-output name=artifact::iris-${{ github.ref_name }}-macos-universal"
112110
- name: Zip artifact
113111
run: |
114-
zip -r ${{ steps.generate-name.outputs.artifact }}.zip ./build/dist
112+
cd build; zip -r ../${{ steps.generate-name.outputs.artifact }}.zip ./iris.app; cd ..
115113
- name: Upload to release
116114
uses: softprops/action-gh-release@v1
117115
with:

0 commit comments

Comments
 (0)