Skip to content

Commit

Permalink
Introduce Tuist Previews
Browse files Browse the repository at this point in the history
  • Loading branch information
fortmarek committed Nov 22, 2024
1 parent 38017b6 commit 609fe7b
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/icy_sky.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: IcySky

on:
push:
branches:
- main
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
name: Build IceSky
runs-on: macos-15
timeout-minutes: 50
steps:
- uses: actions/checkout@v4
- uses: jdx/mise-action@v2
- name: Select Xcode
run: sudo xcode-select -switch /Applications/Xcode_16.1.app
- name: Skip Xcode Macro Fingerprint Validation
run: defaults write com.apple.dt.Xcode IDESkipMacroFingerprintValidation -bool YES
- name: Build IcySky
run: xcodebuild -scheme IcySky -destination 'platform=iOS Simulator,name=iPhone 16' -configuration "Debug" build
- name: Share IcySky
run: mise x -- tuist share IcySky --configuration Debug --platforms ios
env:
TUIST_CONFIG_TOKEN: ${{ secrets.TUIST_CONFIG_TOKEN }}
2 changes: 2 additions & 0 deletions .mise.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[tools]
tuist = "4.35.0"
5 changes: 5 additions & 0 deletions Tuist.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import ProjectDescription

let config = Config(
fullHandle: "tuist/IcySky"
)

0 comments on commit 609fe7b

Please sign in to comment.