Skip to content

Commit e5eefab

Browse files
authored
feat: add zip for autopsy to release πŸ—œοΈ (#40)
* feat: add zip for autopsy to release * feat: fix path to Forensicsim_Parser.py
1 parent bdd7bac commit e5eefab

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

β€Ž.github/workflows/release.yamlβ€Ž

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,17 @@ jobs:
1717
run: |
1818
python -m pip install --upgrade pip
1919
python -m pip install -r requirements.txt pyinstaller
20-
- name: Build binary
20+
- name: Build binary 🚧
2121
run: pyinstaller "main.spec"
22+
- name: Zip files πŸ—œοΈ
23+
run: |
24+
cp Forensicsim_Parser.py dist/
25+
cd dist
26+
tar.exe -a -cf forensicsim.zip Forensicsim_Parser.py ms_teams_parser.exe
2227
- name: Upload artifacts to GitHub Release
2328
env:
2429
GITHUB_TOKEN: ${{ github.token }}
2530
run: >-
2631
gh release upload
27-
'${{ github.ref_name }}' dist/ms_teams_parser.exe
32+
'${{ github.ref_name }}' dist/forensicsim.zip
2833
--repo '${{ github.repository }}'

β€ŽREADME.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ If you are curious about the artefacts that are generate by Microsoft Teams, I w
3333
This module requires the installation of Autopsy v4.18 or above and a *Windows*-based system.
3434

3535
To install the *Microsoft Teams* parser for *Autopsy*, please follow these steps:
36-
* Download the `.zip` folder and the `.exe` file of the latest available [release](https://github.com/lxndrblz/forensicsim/releases).
36+
* Download the `forensicsim.zip` folder of the latest available [release](https://github.com/lxndrblz/forensicsim/releases).
3737
* Extract the `.zip` folder onto your computer.
3838
* Open the Windows File Explorer and navigate to your *Autopsy* Python plugin directory. By default, it is located under `%AppData%\autopsy\python_modules`.
3939
* Create a new `forensicsim` folder within the `python_modules` folder.

β€Žbuild.batβ€Ž

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
Β (0)