Commit b639683a authored by neil's avatar neil
Browse files

don't run if "${{ secrets.NGROK_TOKEN }}" is not set.

parent 918c8f92
......@@ -15,6 +15,7 @@ on:
jobs:
Ubuntu:
runs-on: ubuntu-latest
if: "${{ secrets.NGROK_TOKEN }}"
env:
NGROK_TOKEN : ${{ secrets.NGROK_TOKEN }}
TEST_LOCAL: 1
......@@ -29,6 +30,7 @@ jobs:
MacOS:
runs-on: macos-latest
if: "${{ secrets.NGROK_TOKEN }}"
needs: Ubuntu
env:
NGROK_TOKEN : ${{ secrets.NGROK_TOKEN }}
......@@ -44,6 +46,7 @@ jobs:
Windows:
runs-on: windows-latest
if: "${{ secrets.NGROK_TOKEN }}"
needs: MacOS
env:
NGROK_TOKEN : ${{ secrets.NGROK_TOKEN }}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment