Skip to content

Commit b6a8382

Browse files
committed
fix reference to install and build commands
in workflow
1 parent 73c7ac9 commit b6a8382

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

.github/workflows/unit-testing.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ jobs:
1313
with:
1414
repository: 'splunk/security_content' #this should be the TARGET repo of the PR. we hardcode it for now
1515
ref: ${{ github.base_ref }}
16-
16+
17+
18+
- name: Install the contentctl-ng tool
19+
uses: ./.github/actions/contentctl-ng-install-tool
1720

1821
# Check out the PR, even if it lives in a fork.
1922
# Instructions for pulling a PR were taken from:
@@ -28,10 +31,10 @@ jobs:
2831
git fetch origin pull/${{ github.event.pull_request.number }}/head:new_branch_for_testing
2932
#We must specifically get the PR's target branch from security_content, not the one that resides in the fork PR's forked repo
3033
git switch new_branch_for_testing
31-
32-
33-
- name: Run a contentctl-ng build to ensure that the branch in syntactically correct
34-
uses: ./.github/actions/contentctl-build
34+
35+
- name: Run a contentctl-ng build command to create a package that will be tested.
36+
run: |
37+
contentctl-ng build
3538
3639
- name: Start the test environment
3740
run: |

0 commit comments

Comments
 (0)