👷 Run Tmate in debug mode (#349)

This commit is contained in:
Nikhil Badyal
2023-08-28 20:58:23 +05:30
committed by GitHub
parent 161b71a132
commit 09a10fb68e
+4
View File
@@ -74,8 +74,11 @@ jobs:
- name: Setup tmate session - name: Setup tmate session
uses: mxschmitt/action-tmate@master uses: mxschmitt/action-tmate@master
if: ${{ github.event_name == 'workflow_dispatch' && inputs.DEBUG_ENABLED }} if: ${{ github.event_name == 'workflow_dispatch' && inputs.DEBUG_ENABLED }}
with:
detached: true
- name: Build Revanced APKs - name: Build Revanced APKs
if: ${{ github.event_name != 'workflow_dispatch' && !inputs.DEBUG_ENABLED }}
run: | run: |
if [[ "${{ inputs.CI_TEST }}" =~ ^(true|True|1)$ ]]; then if [[ "${{ inputs.CI_TEST }}" =~ ^(true|True|1)$ ]]; then
echo "In CI Testing. Using local compose file." echo "In CI Testing. Using local compose file."
@@ -86,6 +89,7 @@ jobs:
fi fi
- name: Upload Build APKS - name: Upload Build APKS
uses: actions/upload-artifact@main uses: actions/upload-artifact@main
if: ${{ github.event_name != 'workflow_dispatch' && !inputs.DEBUG_ENABLED }}
with: with:
name: Built-APKs name: Built-APKs
path: | path: |