We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1195caf commit a5b1c00Copy full SHA for a5b1c00
.github/workflows/release.yml
@@ -103,15 +103,13 @@ jobs:
103
cmake -S . -B build
104
cmake --build build -j8
105
sudo cmake --install build
106
- mkdir -p ./build/dist
107
- cp -R ./build/iris.app ./build/dist
108
- name: Generate artifact name
109
id: generate-name
110
run: |
111
echo "::set-output name=artifact::iris-${{ github.ref_name }}-macos-universal"
112
- name: Zip artifact
113
114
- zip -r ${{ steps.generate-name.outputs.artifact }}.zip ./build/dist
+ cd build; zip -r ../${{ steps.generate-name.outputs.artifact }}.zip ./iris.app; cd ..
115
- name: Upload to release
116
uses: softprops/action-gh-release@v1
117
with:
0 commit comments