File tree Expand file tree Collapse file tree 1 file changed +6
-13
lines changed
Expand file tree Collapse file tree 1 file changed +6
-13
lines changed Original file line number Diff line number Diff line change @@ -41,19 +41,12 @@ jobs:
4141 - id : gates
4242 name : Set outputs
4343 run : |
44- if [[ "${{ steps.filter.outputs.server }}" == "true" || "${{ github.ref }}" == "refs/heads/main" ]]; then
45- echo "server=true" >> $GITHUB_OUTPUT
46- echo "Server jobs will run."
47- else
48- echo "Server jobs will be skipped."
49- fi
50-
51- if [[ "${{ steps.filter.outputs.client }}" == "true" || "${{ github.ref }}" == "refs/heads/main" ]]; then
52- echo "client=true" >> $GITHUB_OUTPUT
53- echo "Client jobs will run."
54- else
55- echo "Client jobs will be skipped."
56- fi
44+ # temp set these to true for testing
45+ echo "server=true" >> $GITHUB_OUTPUT
46+ echo "Server jobs will run."
47+
48+ echo "client=true" >> $GITHUB_OUTPUT
49+ echo "Client jobs will run."
5750
5851 build-and-deploy-dashboard :
5952 name : " Build and Deploy Dashboard"
You can’t perform that action at this time.
0 commit comments