Skip to content

Commit

Permalink
feat: add zip for autopsy to release 🗜️ (#40)
Browse files Browse the repository at this point in the history
* feat: add zip for autopsy to release

* feat: fix path to Forensicsim_Parser.py
  • Loading branch information
KarelZe authored Jan 9, 2024
1 parent bdd7bac commit e5eefab
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,17 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt pyinstaller
- name: Build binary
- name: Build binary 🚧
run: pyinstaller "main.spec"
- name: Zip files 🗜️
run: |
cp Forensicsim_Parser.py dist/
cd dist
tar.exe -a -cf forensicsim.zip Forensicsim_Parser.py ms_teams_parser.exe
- name: Upload artifacts to GitHub Release
env:
GITHUB_TOKEN: ${{ github.token }}
run: >-
gh release upload
'${{ github.ref_name }}' dist/ms_teams_parser.exe
'${{ github.ref_name }}' dist/forensicsim.zip
--repo '${{ github.repository }}'
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ If you are curious about the artefacts that are generate by Microsoft Teams, I w
This module requires the installation of Autopsy v4.18 or above and a *Windows*-based system.

To install the *Microsoft Teams* parser for *Autopsy*, please follow these steps:
* Download the `.zip` folder and the `.exe` file of the latest available [release](https://github.com/lxndrblz/forensicsim/releases).
* Download the `forensicsim.zip` folder of the latest available [release](https://github.com/lxndrblz/forensicsim/releases).
* Extract the `.zip` folder onto your computer.
* Open the Windows File Explorer and navigate to your *Autopsy* Python plugin directory. By default, it is located under `%AppData%\autopsy\python_modules`.
* Create a new `forensicsim` folder within the `python_modules` folder.
Expand Down
5 changes: 0 additions & 5 deletions build.bat

This file was deleted.

0 comments on commit e5eefab

Please sign in to comment.