-
Notifications
You must be signed in to change notification settings - Fork 5
92 lines (74 loc) · 2.68 KB
/
publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
name: Build and Publish Extractor Pack
on:
push:
branches: ["main"]
workflow_dispatch:
permissions:
contents: write
packages: write
jobs:
release-check:
runs-on: ubuntu-latest
outputs:
release: ${{ steps.get_version.outputs.release }}
version: ${{ steps.get_version.outputs.version }}
steps:
- uses: actions/checkout@v4
- name: "Check release version"
id: get_version
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
set -e
pip install yq
current_version=$(cat .release.yml | yq -r ".version")
released_version=$(gh api -H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" /repos/:owner/:repo/releases/latest | jq -r ".tag_name")
if [[ "$current_version" == "NA" || "$current_version" == "$released_version" ]]; then
echo "No new release found"
echo "release=false" >> "$GITHUB_OUTPUT"
else
echo "New release found"
echo "version=$current_version" >> "$GITHUB_OUTPUT"
echo "release=true" >> "$GITHUB_OUTPUT"
fi
queries:
runs-on: ubuntu-latest
needs: [release-check]
if: ${{ needs.release-check.outputs.release == 'true' }}
permissions:
contents: read
packages: write
strategy:
fail-fast: false
matrix:
packs: ["lib", "src"]
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: "Check and Publish CodeQL Packs"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
PACK_PATH=ql/${{ matrix.packs }}/qlpack.yml
CURRENT_VERSION=$(grep version $PACK_PATH | awk '{print $2}')
PACK_FULLNAME=$(cat $PACK_PATH | grep "name:" | awk '{print $2}')
PACK_NAME=$(echo $PACK_FULLNAME | awk -F '/' '{print $2}')
PUBLISHED_VERSION=$(gh api /orgs/advanced-security/packages/container/$PACK_NAME/versions --jq '.[0].metadata.container.tags[0]')
echo "Packs :: ${CURRENT_VERSION} -> ${PUBLISHED_VERSION}"
if [ "$PUBLISHED_VERSION" != "$CURRENT_VERSION" ]; then
gh extension install github/gh-codeql
gh codeql pack install "ql/${{ matrix.packs }}"
gh codeql pack publish "ql/${{ matrix.packs }}"
fi
compile:
runs-on: ubuntu-latest
needs: [release-check]
if: ${{ needs.release-check.outputs.release == 'true' }}
steps:
- uses: actions/checkout@v4
- name: "Publish Extractor Pack"
if: github.ref == 'refs/heads/main'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
./scripts/publish-extractor-pack.sh