We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fd2146 commit e36f497Copy full SHA for e36f497
.github/workflows/main.yml
@@ -17,9 +17,11 @@ jobs:
17
with:
18
python-version: '3.12'
19
- name: Install requirements with PIP
20
- run: pip install dnslib requests pyinstaller
+ run: |
21
+ python -m pip install --upgrade pip
22
+ pip install -r requirements.txt
23
- name: Build DNS-Server
- run: pyinstaller --onefile DNS-Server.spec
24
+ run: pyinstaller DNS-Server.spec
25
- name: Publish Build Artifacts
26
uses: actions/upload-artifact@v4
27
0 commit comments