Skip to content

Commit e36f497

Browse files
committed
GitHub actions: attempt two
1 parent 6fd2146 commit e36f497

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,11 @@ jobs:
1717
with:
1818
python-version: '3.12'
1919
- name: Install requirements with PIP
20-
run: pip install dnslib requests pyinstaller
20+
run: |
21+
python -m pip install --upgrade pip
22+
pip install -r requirements.txt
2123
- name: Build DNS-Server
22-
run: pyinstaller --onefile DNS-Server.spec
24+
run: pyinstaller DNS-Server.spec
2325
- name: Publish Build Artifacts
2426
uses: actions/upload-artifact@v4
2527
with:

0 commit comments

Comments
 (0)