Skip to content

Commit

Permalink
Merge pull request #33 from futuredapp/housekeep/detect-changes
Browse files Browse the repository at this point in the history
housekeep/detect-changes
  • Loading branch information
jmarek41 authored Oct 24, 2024
2 parents 3b75521 + 8426e53 commit 530923e
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ios-selfhosted-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,26 @@ on:
Private App Store Connect API issuer key for submitting build to App Store.
jobs:
detect-changes:
name: Detect Changes
runs-on: ubuntu-latest
outputs:
project: ${{ steps.changes.outputs.project }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Detect Changes
uses: dorny/paths-filter@v3
id: changes
with:
filters: |
project:
- '**'
build:
runs-on: self-hosted
timeout-minutes: 30
needs: detect-changes
if: ${{ needs.detect-changes.outputs.project == 'true' }}

steps:
- name: Checkout
Expand Down

0 comments on commit 530923e

Please sign in to comment.