|
4 | 4 | branches: |
5 | 5 | - stable |
6 | 6 | - develop |
7 | | - - 'release/**' |
| 7 | + - "release/**" |
8 | 8 | pull_request: |
9 | 9 | branches: |
10 | 10 | - stable |
11 | | - - 'release/**' |
| 11 | + - "release/**" |
12 | 12 |
|
13 | 13 | jobs: |
14 | | - |
15 | 14 | exe: |
16 | 15 | runs-on: windows-latest |
17 | 16 | strategy: |
18 | 17 | matrix: |
19 | 18 | python-version: ["3.11"] |
20 | 19 | steps: |
21 | | - - uses: actions/checkout@v3 |
22 | | - - name: Set up Python ${{ matrix.python-version }} |
23 | | - uses: actions/setup-python@v4 |
24 | | - with: |
25 | | - python-version: ${{ matrix.python-version }} |
| 20 | + - uses: actions/checkout@v3 |
| 21 | + - name: Set up Python ${{ matrix.python-version }} |
| 22 | + uses: actions/setup-python@v4 |
| 23 | + with: |
| 24 | + python-version: ${{ matrix.python-version }} |
| 25 | + |
| 26 | + - name: Install dependencies |
| 27 | + run: | |
| 28 | + python -m pip install --upgrade pip |
| 29 | + pip install pyinstaller |
| 30 | + pip install -e .[full,cloud] |
26 | 31 |
|
27 | | - - name: Install dependencies |
28 | | - run: | |
29 | | - python -m pip install --upgrade pip |
30 | | - pip install pyinstaller |
31 | | - |
32 | | - - name: Pyinstall executable |
33 | | - run: | |
34 | | - pyinstaller --clean -y vol.spec |
35 | | - pyinstaller --clean -y volshell.spec |
| 32 | + - name: Pyinstall executable |
| 33 | + run: | |
| 34 | + pyinstaller --clean -y vol.spec |
| 35 | + pyinstaller --clean -y volshell.spec |
36 | 36 |
|
37 | | - - name: Move files |
38 | | - run: | |
39 | | - mv dist/vol.exe vol.exe |
40 | | - mv dist/volshell.exe volshell.exe |
| 37 | + - name: Move files |
| 38 | + run: | |
| 39 | + mv dist/vol.exe vol.exe |
| 40 | + mv dist/volshell.exe volshell.exe |
41 | 41 |
|
42 | | - - name: Archive |
43 | | - uses: actions/upload-artifact@v4 |
44 | | - with: |
45 | | - name: volatility3-pyinstaller |
46 | | - path: | |
47 | | - vol.exe |
48 | | - volshell.exe |
49 | | - README.md |
50 | | - LICENSE.txt |
| 42 | + - name: Archive |
| 43 | + uses: actions/upload-artifact@v4 |
| 44 | + with: |
| 45 | + name: volatility3-pyinstaller |
| 46 | + path: | |
| 47 | + vol.exe |
| 48 | + volshell.exe |
| 49 | + README.md |
| 50 | + LICENSE.txt |
0 commit comments