Skip to content

Commit f70a0ec

Browse files
committed
Initial commit
0 parents  commit f70a0ec

50 files changed

Lines changed: 1887 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/build.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
on:
2+
push:
3+
tags:
4+
- "v*.*.*"
5+
6+
jobs:
7+
build:
8+
runs-on: macos-latest
9+
permissions: write-all
10+
11+
env:
12+
APP_NAME: "Home Screen Layout"
13+
14+
steps:
15+
- name: Check out repository
16+
uses: actions/checkout@v3
17+
18+
- name: Set up Xcode
19+
uses: maxim-lobanov/setup-xcode@v1.6.0
20+
with:
21+
xcode-version: '16.0'
22+
23+
- name: Build
24+
run: |
25+
xcodebuild -scheme "${{ env.APP_NAME }}" \
26+
-sdk appletvos \
27+
-configuration Release \
28+
-archivePath "${{ github.workspace }}/build/${{ env.APP_NAME }}.xcarchive" \
29+
-allowProvisioningUpdates \
30+
archive \
31+
CODE_SIGNING_REQUIRED=NO \
32+
AD_HOC_CODE_SIGNING_ALLOWED=YES \
33+
CODE_SIGNING_ALLOWED=NO
34+
35+
- name: Convert to IPA
36+
run: |
37+
mkdir Payload
38+
cp -pR "${{ github.workspace }}/build/${{ env.APP_NAME }}.xcarchive/Products/Applications/${{ env.APP_NAME }}.app" "Payload/${{ env.APP_NAME }}.app"
39+
zip -r "Home_Screen_Layout.ipa" Payload
40+
41+
- name: Release
42+
uses: softprops/action-gh-release@v2
43+
with:
44+
files: Home_Screen_Layout.ipa

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*.xcshareddata
2+
.build
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"images" : [
3+
{
4+
"idiom" : "universal",
5+
"filename" : "App Icon-1280x768px.png",
6+
"scale" : "1x"
7+
},
8+
{
9+
"idiom" : "universal",
10+
"scale" : "2x"
11+
},
12+
{
13+
"idiom" : "universal",
14+
"scale" : "3x"
15+
}
16+
],
17+
"info" : {
18+
"version" : 1,
19+
"author" : "xcode"
20+
}
21+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"info" : {
3+
"version" : 1,
4+
"author" : "xcode"
5+
}
6+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"images" : [
3+
{
4+
"idiom" : "tv",
5+
"scale" : "1x"
6+
},
7+
{
8+
"idiom" : "tv",
9+
"scale" : "2x"
10+
}
11+
],
12+
"info" : {
13+
"version" : 1,
14+
"author" : "xcode"
15+
}
16+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"info" : {
3+
"version" : 1,
4+
"author" : "xcode"
5+
}
6+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"info" : {
3+
"author" : "xcode",
4+
"version" : 1
5+
}
6+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"images" : [
3+
{
4+
"filename" : "White-1280x768px.png",
5+
"idiom" : "universal",
6+
"scale" : "1x"
7+
},
8+
{
9+
"idiom" : "universal",
10+
"scale" : "2x"
11+
},
12+
{
13+
"idiom" : "universal",
14+
"scale" : "3x"
15+
}
16+
],
17+
"info" : {
18+
"author" : "xcode",
19+
"version" : 1
20+
}
21+
}
Loading

0 commit comments

Comments
 (0)