We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ebe766 commit d166b7cCopy full SHA for d166b7c
.github/workflows/publish.yml
@@ -0,0 +1,26 @@
1
+name: Publish
2
+on:
3
+ workflow_dispatch:
4
+
5
+jobs:
6
+ tests:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v3
10
+ - name: Fetch CodeQL
11
+ shell: bash
12
+ env:
13
+ GITHUB_TOKEN: ${{ github.token }}
14
+ run: |
15
+ gh extension install github/gh-codeql
16
+ gh codeql set-channel "nightly"
17
+ gh codeql version
18
+ printf "CODEQL_FETCHED_CODEQL_PATH=" >> "${GITHUB_ENV}"
19
+ gh codeql version --format=json | jq -r .unpackedLocation >> "${GITHUB_ENV}"
20
+ gh codeql version --format=json | jq -r .unpackedLocation >> "${GITHUB_PATH}"
21
+ - name: Publish
22
23
+ GITHUB_TOKEN: ${{ secrets.GHCR_TOKEN }}
24
25
+ codeql pack publish ql/lib
26
+ codeql pack publish ql/src
0 commit comments