File tree Expand file tree Collapse file tree 2 files changed +49
-4
lines changed
Expand file tree Collapse file tree 2 files changed +49
-4
lines changed Original file line number Diff line number Diff line change 1+ name : Upload .DEB to Release
2+
3+ on :
4+ push :
5+ tags :
6+ - ' *'
7+
8+ jobs :
9+ build :
10+ runs-on : ubuntu-latest
11+ steps :
12+ - name : Checkout
13+ uses : actions/checkout@v2
14+
15+ - name : Build .DEB
16+ run : |
17+ sed -i 's/#PKG_NAME/PKG_NAME/' make-deb.sh
18+ bash make-deb.sh # Build for Debian
19+ bash make-deb.sh termux # Build for Termux
20+ find -type f -name "*.deb" -exec sha256sum "{}" > SUMS.txt \;
21+
22+ - name : Upload to Release
23+ uses : softprops/action-gh-release@v1
24+ with :
25+ files : " *.deb"
26+ - uses : softprops/action-gh-release@v1
27+ with :
28+ files : SUMS.txt
Original file line number Diff line number Diff line change 1313</p >
1414
1515<p align =" center " >
16- <img src =" https://img.shields.io/badge/Author-htr--tech-blue?style=flat-square " >
17- <img src =" https://img.shields.io/badge/Open%20Source-Yes-darkgreen?style=flat-square " >
18- <img src =" https://img.shields.io/badge/Maintained%3F-Yes-lightblue?style=flat-square " >
19- <img src =" https://img.shields.io/badge/Written%20In-Bash-darkcyan?style=flat-square " >
16+ <img src =" https://img.shields.io/badge/Author-htr--tech-blue?style=flat-square&edge_flat=false " >
17+ <img src =" https://img.shields.io/badge/Open%20Source-Yes-darkgreen?style=flat-square&edge_flat=false " >
18+ <img src =" https://img.shields.io/badge/Maintained%3F-Yes-lightblue?style=flat-square&edge_flat=false " >
19+ <img src =" https://img.shields.io/badge/Written%20In-Bash-darkcyan?style=flat-square&edge_flat=false " >
2020 <img src =" https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2Fhtr-tech%2Fzphisher&title=Visitors&edge_flat=false " /></a >
2121</p >
2222
@@ -67,6 +67,23 @@ It only demonstrates "how phishing works". <b>You shall not misuse the informati
6767
6868##
6969
70+ ### Installation via ".deb" file
71+
72+ - Download ` .deb ` files from the [ ** Latest Release** ] ( https://github.com/htr-tech/zphisher/releases/latest )
73+ - If you are using *** termux*** then download the ` *_termux.deb `
74+
75+ - Install the ` .deb ` file by executing
76+ ```
77+ apt install <your path to deb file>
78+ ```
79+ Or
80+ ```
81+ $ dpkg -i <your path to deb file>
82+ $ apt install -f
83+ ```
84+
85+ ##
86+
7087### Run on Docker
7188
7289- Docker Image Mirror:
You can’t perform that action at this time.
0 commit comments