-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (48 loc) · 1.43 KB
/
release.yml
File metadata and controls
58 lines (48 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: Build and Release
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode.app
- name: Build Release
run: |
xcodebuild -project Holster.xcodeproj \
-scheme Holster \
-configuration Release \
-derivedDataPath build \
CODE_SIGN_IDENTITY="-" \
CODE_SIGNING_REQUIRED=NO \
CODE_SIGNING_ALLOWED=NO
- name: Create DMG
run: |
APP_PATH="build/Build/Products/Release/Holster.app"
DMG_PATH="Holster.dmg"
# Create a temporary directory for the DMG contents
mkdir -p dmg_contents
cp -R "$APP_PATH" dmg_contents/
ln -s /Applications dmg_contents/Applications
# Create the DMG
hdiutil create -volname "Holster" \
-srcfolder dmg_contents \
-ov -format UDZO \
"$DMG_PATH"
- name: Create Zip
run: |
APP_PATH="build/Build/Products/Release/Holster.app"
ditto -c -k --keepParent "$APP_PATH" Holster.app.zip
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
files: |
Holster.dmg
Holster.app.zip
generate_release_notes: true