Skip to content

Commit

Permalink
Create automated-ios-build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-128 authored Jan 5, 2024
1 parent 869714c commit 3eeb346
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/automated-ios-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Automated iOS Build

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.1'
- uses: yukiarrr/ios-build-action@v1.11.2
with:
project-path: qBitControl.xcodeproj
p12-base64: ${{ secrets.P12_BASE64 }}
mobileprovision-base64: ${{ secrets.MOBILEPROVISION_BASE64 }}
code-signing-identity: ${{ secrets.CODE_SIGNING_IDENTITY }}
team-id: ${{ secrets.TEAM_ID }}
output-path: qBitControl.ipa
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: true
automatic_release_tag: "CI"
title: "qBitControl CI"
files: |
qBitControl.ipa

0 comments on commit 3eeb346

Please sign in to comment.