Skip to content
This repository has been archived by the owner on Oct 1, 2024. It is now read-only.

Commit

Permalink
Update xcode-build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonm23 authored Oct 1, 2024
1 parent a67445a commit 5a8c0d2
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions .github/workflows/xcode-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ on:
push:
branches: [ "master" ]
workflow_dispatch:
inputs:
debug:
description: Debug this build?
type: choice
required: true
default: 'false'
options:
- 'true'
- 'false'

jobs:
build:
Expand Down Expand Up @@ -56,11 +65,12 @@ jobs:
make setup
# Temporary debugging for tests
# - name: Setup tmate session
# uses: mxschmitt/action-tmate@v3
# timeout-minutes: 15
# with:
# limit-access-to-actor: true
- name: Setup tmate session
if: "${{ github.event.inputs.<INPUT_NAME> != '' }}"
uses: mxschmitt/action-tmate@v3
timeout-minutes: 15
with:
limit-access-to-actor: true

- name: Run Tests
run: |
Expand Down

0 comments on commit 5a8c0d2

Please sign in to comment.