Skip to content
Merged
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
11 changes: 11 additions & 0 deletions .github/workflows/incluster-comp-pr-merged.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,17 @@ jobs:
- name: Run unit test
id: unit-test
run: go test -v ./...
- name: debug
run: |
if [ -z "$QUAY_PASSWORD" ]; then
echo "QUAY_PASSWORD is not set"
exit 1
fi
if [ -z "$QUAY_USERNAME" ]; then
echo "QUAY_USERNAME is not set"
exit 1
fi


- name: Login to Quay
uses: docker/login-action@v3
Expand Down
Loading