Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/github_server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ jobs:
# relative paths to action files
- uses: actions/checkout@v3

- run: echo ${{ toJSON(inputs.enable_tmate) }}
shell: bash

- name: ALKiln - Start the isolated temporary docassemble server on GitHub
id: github_server
#### Developer note: you'll need to replace `.` with the path to
Expand All @@ -57,7 +60,7 @@ jobs:
#### Developer note: You probably don't need this
# Optional debugging to explore things like config issues
- name: Docker debug tmate session
if: ${{ github.event.inputs.enable_tmate }}
if: ${{ toJSON(inputs.enable_tmate) == 'true' }}
uses: mxschmitt/action-tmate@v3

#### Developer note: You probably don't need this
Expand Down