Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

First watch only #68

Closed
wants to merge 48 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
1b9752b
First watch only
Lightning-Lion Jan 12, 2024
9ea2f0c
First watch onlyV1
Lightning-Lion Jan 12, 2024
c19f8b1
Delete Package.swift
WindowsMEMZ Jan 12, 2024
b4649ea
Delete .DS_Store
WindowsMEMZ Jan 12, 2024
11c73fc
Delete Sources/DarockBili directory
WindowsMEMZ Jan 12, 2024
e8a9ee7
Delete Tests/DarockBiliTests directory
WindowsMEMZ Jan 12, 2024
adb3eac
Delete DarockBili Watch App/.DS_Store
WindowsMEMZ Jan 12, 2024
44157e2
Opt proj settings
WindowsMEMZ Jan 13, 2024
633197c
Fix build issue
WindowsMEMZ Jan 13, 2024
761ac01
Update ios.yml
WindowsMEMZ Jan 14, 2024
026357b
Update ad-hoc.plist
WindowsMEMZ Jan 14, 2024
cb465d6
Update ios.yml
WindowsMEMZ Jan 14, 2024
10cd363
Update ios.yml
WindowsMEMZ Jan 14, 2024
eb5216e
Update ios.yml
WindowsMEMZ Jan 14, 2024
481cca7
Update ios.yml
WindowsMEMZ Jan 14, 2024
ac4eee8
Update ios.yml
WindowsMEMZ Jan 14, 2024
5ab0dc8
Update ios.yml
WindowsMEMZ Jan 14, 2024
0fd73e4
Update ios.yml
WindowsMEMZ Jan 14, 2024
f66c83e
Update ios.yml
WindowsMEMZ Jan 14, 2024
f47e359
Update MainView.swift
WindowsMEMZ Jan 14, 2024
c8aa6e9
Update ios.yml
WindowsMEMZ Jan 14, 2024
3b67314
Update ios.yml
WindowsMEMZ Jan 14, 2024
faa39b3
Update ios.yml
WindowsMEMZ Jan 15, 2024
5e9671b
Update ios.yml
WindowsMEMZ Jan 15, 2024
1cb6de4
Update ios.yml
WindowsMEMZ Jan 15, 2024
a12d67a
Update ios.yml
WindowsMEMZ Jan 15, 2024
0fd5d9d
Update ios.yml
WindowsMEMZ Jan 15, 2024
51a56ab
Update ios.yml
WindowsMEMZ Jan 15, 2024
978f6cb
Update ios.yml
WindowsMEMZ Jan 15, 2024
71e3e86
Update ios.yml
WindowsMEMZ Jan 15, 2024
d01c71a
Update ios.yml
WindowsMEMZ Jan 15, 2024
83e6425
Update ios.yml
WindowsMEMZ Jan 15, 2024
2514dce
Update ios.yml
WindowsMEMZ Jan 15, 2024
55a5a42
Update ios.yml
WindowsMEMZ Jan 15, 2024
6afbeba
Update ios.yml
WindowsMEMZ Jan 16, 2024
56219c7
Update ios.yml
WindowsMEMZ Jan 16, 2024
f8ac6b8
Update project.pbxproj
WindowsMEMZ Jan 16, 2024
ccb45a0
Update ios.yml
WindowsMEMZ Jan 16, 2024
7e20f21
Update ios.yml
WindowsMEMZ Jan 16, 2024
66357db
Update ios.yml
WindowsMEMZ Jan 16, 2024
9747293
Update ios.yml
WindowsMEMZ Jan 16, 2024
b721cde
Update ios.yml
WindowsMEMZ Jan 16, 2024
3fab3b5
Update ios.yml
WindowsMEMZ Jan 16, 2024
1fc9768
Update ios.yml
WindowsMEMZ Jan 16, 2024
f195fcf
Update ad-hoc.plist
WindowsMEMZ Jan 16, 2024
503039c
Update ios.yml
WindowsMEMZ Jan 16, 2024
fc24f09
Update ios.yml
WindowsMEMZ Jan 16, 2024
cd1a576
Update ios.yml
WindowsMEMZ Jan 16, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update ios.yml
WindowsMEMZ authored Jan 14, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 10cd3631964a28e24df5dc309c1d8291f5004eaf
72 changes: 30 additions & 42 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
@@ -8,8 +8,8 @@ on:
- '!.github/workflows/ios.yml'

jobs:
build:
name: Build and Archive App
prepare:
name: Prepare App Version
runs-on: macos-13
permissions:
contents: write
@@ -56,6 +56,27 @@ jobs:
branch: release-vers
directory: vers

- name: Upload Proj
uses: actions/upload-artifact@v3
with:
name: Versioned Project
path: ./

build:
name: Build and Archive App
runs-on: macos-13
needs:
- prepare
steps:
- name: Download Versioned Project
uses: actions/download-artifact@v3
with:
name: Versioned Project
path: ./

- name: Set Xcode Version
run: sudo xcode-select -s /Applications/Xcode_15.0.app

- name: Install the Apple certificate and provisioning profile for Xcode
env:
BUILD_CERTIFICATE_BASE64: ${{ secrets.BUILD_CERTIFICATE_BASE64 }}
@@ -128,51 +149,18 @@ jobs:
build_comp:
name: Build Company App
runs-on: macos-13
permissions:
contents: write
pull-requests: write
issues: write
repository-projects: write
needs:
- prepare
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Download Versioned Project
uses: actions/download-artifact@v3
with:
name: Versioned Project
path: ./

- name: Set Xcode Version
run: sudo xcode-select -s /Applications/Xcode_15.0.app

- name: Prepare Version Folder
run: mkdir vers

- name: Checkout Version Files
uses: actions/checkout@v3
with:
ref: release-vers
persist-credentials: false
fetch-depth: 0
path: vers

- name: Change Project Version
run: |
read MVER < vers/ver.txt
MVER=$[MVER+1]
rm vers/ver.txt
echo $MVER >> vers/ver.txt
agvtool new-version -all $MVER
- name: Commit Files
working-directory: vers
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git commit -a -m "Updated versions"
- name: Push Changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: release-vers
directory: vers

- name: Install the Apple certificate and provisioning profile for Xcode
env:
BUILD_CERTIFICATE_BASE64: ${{ secrets.COMPANY_CER }}