Skip to content

Commit

Permalink
Merge pull request #11999 from Vincent056/fix_workflow
Browse files Browse the repository at this point in the history
OCP4: Fix content datastream workflow
  • Loading branch information
rhmdnd authored May 15, 2024
2 parents ef725b1 + 2028b10 commit 712a82b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/k8s-content-pr-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,13 @@ jobs:
echo "Failed to fetch go version from compliance-operator go.mod"
exit 1
fi
- name: Save go version to be used in setup-go action
id: save-go-version
run: |
echo "go-version=$(cat compliance-operator/go-version)" > compliance-operator/go-version
- uses: actions/setup-go@v5
with:
go-version: $(cat compliance-operator/go-version)
go-version: ${{ steps.save-go-version.outputs.go-version }}
- name: Run ginkgo tests and check if each XCCDF file is parsed correctly
run: |
export DEFAULT_CONTENT_DS_FILE_PATH=$PWD/content
Expand Down

0 comments on commit 712a82b

Please sign in to comment.