Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh builder flows add tkn check exists for all events #18

Merged
merged 1 commit into from
Aug 2, 2024
Merged
Show file tree
Hide file tree
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: 7 additions & 4 deletions .github/workflows/crc-builder-builder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,14 @@ jobs:
run: |
make crc-builder-tkn-create

- name: Check tkn for release
if: ${{ github.event_name == 'push' }}
- name: Check tkn specs
run: |
[ ! -f crc-builder/tkn/crc-builder-installer.yaml ] && exit 1
[ ! -f crc-builder/tkn/crc-builder.yaml ] && exit 1
if [[ ! -f crc-builder/tkn/crc-builder-installer.yaml ]]; then
exit 1
fi
if [[ ! -f crc-builder/tkn/crc-builder.yaml ]]; then
exit 1
fi
# Check if version is in sync

- name: Create k8s Kind Cluster
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/snc-runner-builder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,11 @@ jobs:
run: |
make snc-runner-tkn-create

- name: Check tkn for release
if: ${{ github.event_name == 'push' }}
- name: Check tkn specs
run: |
[ ! -f snc-runner/tkn/task.yaml ] && exit 1
if [[ ! -f snc-runner/tkn/task.yaml ]]; then
exit 1
fi
# Check if version is in sync

- name: Create k8s Kind Cluster
Expand Down