Skip to content
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
8 changes: 4 additions & 4 deletions .github/workflows/components.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: component CTFs

on:
pull_request_target:
pull_request:
branches:
-main
push:
branches:
- main
Expand Down Expand Up @@ -36,6 +38,4 @@ jobs:
with:
go-version-file: '${{ github.workspace }}/go.mod'
- name: CTF
run: |
cd component/
PATH=$PATH:$(go env GOPATH)/bin make ocm && make ctf
run: PATH=$PATH:$(go env GOPATH)/bin make -C component/ ctf
2 changes: 1 addition & 1 deletion component/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ endif
SHELL = /usr/bin/env bash -o pipefail
.SHELLFLAGS = -ec

OCM_CLI_VERSION ?= 0.15.0
OCM_CLI_VERSION ?= 0.24.0

## Location to install dependencies to
LOCALBIN ?= $(shell pwd)/bin
Expand Down
Loading