Skip to content

Commit 5d4c54e

Browse files
committed
Temporarily set server and client outputs to true for testing
1 parent 4c6d8fd commit 5d4c54e

File tree

1 file changed

+6
-13
lines changed

1 file changed

+6
-13
lines changed

.github/workflows/gitops-staging.yaml

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff 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"

0 commit comments

Comments
 (0)