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 7aaaecd commit f0a2174Copy full SHA for f0a2174
1 file changed
.github/workflows/codeql.yml
@@ -12,7 +12,7 @@ on:
12
jobs:
13
analyze:
14
name: Analyze
15
- runs-on: 'ubuntu-20.04'
+ runs-on: 'ubuntu-latest'
16
timeout-minutes: 360
17
permissions:
18
actions: read
@@ -38,8 +38,8 @@ jobs:
38
39
- name: Setup
40
run: |
41
- sudo apt-get -y update
42
- sudo apt-get install libxkbcommon-dev libxkbcommon-x11-0 fuse libxcb-cursor-dev gdb build-essential
+ echo "DISTRIBUTION=AppImage" >> "$GITHUB_ENV"
+ sudo apt-get install libxkbcommon-dev libxkbcommon-x11-0 fuse libxcb-cursor-dev
43
44
# Initializes the CodeQL tools for scanning.
45
- name: Initialize CodeQL
@@ -51,7 +51,7 @@ jobs:
51
52
mkdir build
53
cd build
54
- qmake "../src/NotepadNext.pro" "DISTRIBUTION=AppImage"
+ qmake ../src/NotepadNext.pro "DISTRIBUTION=$DISTRIBUTION"
55
make -j$(nproc)
56
57
- name: Perform CodeQL Analysis
0 commit comments