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 a96907d commit 06c3801Copy full SHA for 06c3801
.github/workflows/release-mac.yml
@@ -5,6 +5,9 @@ on:
5
branches:
6
- main
7
8
+permissions:
9
+ contents: write
10
+
11
jobs:
12
check_version:
13
uses: ./.github/workflows/check-version.yml
@@ -40,8 +43,9 @@ jobs:
40
43
sudo xcode-select -s $DEVELOPER_DIR
41
44
cmake -G "Ninja" -DCMAKE_BUILD_TYPE=Release -S . -B build
42
45
cmake --build build
- cp LICENSE.txt build/awrit/Release/LICENSE
- tar cJf awrit-mac-${{ matrix.arch }}.tar.xz -C build/awrit/Release awrit.app LICENSE
46
+ cmake --install build --prefix prefix
47
+ cp LICENSE.txt prefix/lib/awrit/LICENSE
48
+ tar cJf awrit-mac-${{ matrix.arch }}.tar.xz -C prefix .
49
shasum -a 256 awrit-mac-${{ matrix.arch }}.tar.xz > awrit-mac-${{ matrix.arch }}.tar.xz.sha256sum
50
51
- name: Create release
0 commit comments