Skip to content

Commit 05e76b2

Browse files
authored
Update package
1 parent acff7a6 commit 05e76b2

File tree

2 files changed

+33
-63
lines changed

2 files changed

+33
-63
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Build all  platforms using preternatural-build
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
workflow_dispatch:
9+
10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
12+
cancel-in-progress: true
13+
14+
jobs:
15+
preternatural-build:
16+
name: ${{ matrix.command }} on  ${{ matrix.platform }} (Xcode ${{ matrix.xcode }})
17+
runs-on: macos-latest
18+
strategy:
19+
fail-fast: false
20+
matrix:
21+
xcode: ['16.1']
22+
scheme: ['SwiftUIX']
23+
command: ['build']
24+
platform: ['macOS', 'iOS', 'tvOS', 'watchOS']
25+
steps:
26+
- name: Checkout repository
27+
uses: actions/checkout@v3
28+
29+
- name: Run Preternatural Build
30+
uses: PreternaturalAI/preternatural-github-actions/preternatural-build@main
31+
with:
32+
xcode-version: ${{ matrix.xcode }}
33+
platforms: "[${{ matrix.platform }}]"

.github/workflows/workflow.yml

Lines changed: 0 additions & 63 deletions
This file was deleted.

0 commit comments

Comments
 (0)