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 efd7e93 commit 83e6d2aCopy full SHA for 83e6d2a
1 file changed
.github/workflows/build.yml
@@ -32,6 +32,18 @@ jobs:
32
pyinstaller --onefile AFHscraper.py
33
shell: bash
34
35
+ - name: Rename output for OS
36
+ run: |
37
+ cd dist
38
+ if [[ "${{ matrix.os }}" == "ubuntu-22.04" ]]; then
39
+ mv AFHscraper AFHscraperLinux
40
+ elif [[ "${{ matrix.os }}" == "macos-latest" ]]; then
41
+ mv AFHscraper AFHscraperMacOS
42
+ else
43
+ mv AFHscraper.exe AFHscraperWindows.exe
44
+ fi
45
+ shell: bash
46
+
47
- name: Upload build artifact
48
uses: actions/upload-artifact@v4
49
with:
@@ -61,4 +73,4 @@ jobs:
61
73
files: |
62
74
builds/**/*
63
75
env:
64
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
76
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments