Skip to content

Commit 35e9885

Browse files
Add workflows
1 parent 15d6fcc commit 35e9885

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Publish Release
2+
3+
on:
4+
push:
5+
tags:
6+
- '*'
7+
8+
jobs:
9+
publish-release:
10+
uses: TogglesPlatform/Pipelines/.github/workflows/publish-release.yml@v1
11+
with:
12+
xcode-version: 16.4.0
13+
tool-name: 'ToggleGen'
14+
runner: 'macos-15'
15+
secrets:
16+
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/run-tests.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Run tests
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
run-tests:
13+
uses: TogglesPlatform/Pipelines/.github/workflows/run-tests.yml@v1
14+
with:
15+
xcode-version: 16.4.0
16+
runner: 'macos-15'

0 commit comments

Comments
 (0)