Skip to content

Commit

Permalink
Nightly build at 2023年 8月 23日 水曜日 20:43:03 JST
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-tee authored and Nightly build user committed Aug 23, 2023
1 parent c1f38eb commit 7fb8b53
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ on:

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
inputs:
debug_enabled:
type: boolean
description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)'
required: false
default: false

jobs:
build:
Expand Down Expand Up @@ -66,7 +72,8 @@ jobs:
# Use the following to inject a tmate session to SSH and debug
# things
- name: Setup tmate session
if: ${{ failure() }}
if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }}
uses: mxschmitt/action-tmate@v3
with:
limit-access-to-actor: true
detached: true
9 changes: 8 additions & 1 deletion .github/workflows/msys2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ on:

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
inputs:
debug_enabled:
type: boolean
description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)'
required: false
default: false

jobs:
build:
Expand Down Expand Up @@ -136,7 +142,8 @@ jobs:
# Use the following to inject a tmate session to SSH and debug
# things
- name: Setup tmate session
if: ${{ failure() }}
if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }}
uses: mxschmitt/action-tmate@v3
with:
limit-access-to-actor: true
detached: true

0 comments on commit 7fb8b53

Please sign in to comment.