Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78a6ed4 commit 909e6d5Copy full SHA for 909e6d5
1 file changed
.github/workflows/build.yml
@@ -81,7 +81,9 @@ jobs:
81
- name: Build Query Pack
82
run: |
83
codeql/codeql pack create ql/src --output target/packs
84
- cp -r ql/src/codeql-suites target/packs/github_codeql-ruby_*/
+ PACK_FOLDER=$(readlink -f target/packs/github_codeql-ruby_*)
85
+ cp -r ql/src/codeql-suites "${PACK_FOLDER}"/
86
+ (cd ql/src; find queries \( -name '*.rb' -o -name '*.erb' \) -exec cp "{}" "${PACK_FOLDER}/{}" \;)
87
- name: Compile with previous CodeQL versions
88
89
for version in $(gh release list --repo https://github.com/github/codeql-cli-binaries | cut -f 1 | sort --version-sort | tail -3 | head -2); do
0 commit comments