Compare commits

..

15 commits
v1.0.1 ... main

Author SHA1 Message Date
jayateertha043
4285b83496 fixed page loading 2022-05-30 12:42:40 +05:30
Jayateertha Guruprasad
5a025b610a
Delete goreleaser.yml 2022-05-17 23:20:05 +05:30
Jayateertha Guruprasad
504a6b83ed
Update release.yml 2022-05-17 23:16:24 +05:30
Jayateertha Guruprasad
a40eca7bc7
Update release.yml 2022-05-17 23:07:00 +05:30
Jayateertha Guruprasad
c783084fa4
Rename .goreleaser.yml to goreleaser.yml 2022-05-17 23:04:56 +05:30
Jayateertha Guruprasad
bfa0ab68c4
Update release.yml 2022-05-17 23:03:33 +05:30
Jayateertha Guruprasad
dac8e5bf25
Update .goreleaser.yml 2022-05-17 23:03:02 +05:30
Jayateertha Guruprasad
5eff4dc453
Update release.yml 2022-05-17 23:01:46 +05:30
jayateertha043
07f5c7dfa8 test release 2022-05-17 22:55:41 +05:30
Jayateertha Guruprasad
2ce821c8b9
Create .goreleaser.yml 2022-05-17 22:54:44 +05:30
Jayateertha Guruprasad
1644d39957
Update release.yml 2022-05-17 22:53:03 +05:30
jayateertha043
1770855360 added 2022-05-17 22:36:17 +05:30
Jayateertha Guruprasad
160cc6eac0
Update release.yml 2022-05-17 22:31:48 +05:30
Jayateertha Guruprasad
291e3ae81f
Update release.yml 2022-05-17 22:26:20 +05:30
Jayateertha Guruprasad
8e5d2adcdc
release yaml initial 2022-05-17 22:25:23 +05:30
4 changed files with 36 additions and 1 deletions

30
.github/workflows/release.yml vendored Normal file
View file

@ -0,0 +1,30 @@
name: goreleaser
on:
pull_request:
push:
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
-
name: Set up Go
uses: actions/setup-go@v2
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
# either 'goreleaser' (default) or 'goreleaser-pro'
distribution: goreleaser
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Your GoReleaser Pro key, if you are using the 'goreleaser-pro' distribution
# GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}

View file

@ -159,3 +159,4 @@ func printbanner() {
`
fmt.Println(banner)
}

View file

@ -28,7 +28,7 @@ Run GoShoD:
## USAGE:
<img src="./GoShod.gif"/>
<img src="./GoShod.gif"/>
Configure Shodan API:

View file

@ -123,6 +123,8 @@ const app = new Vue({
},
nextPage(){
if(this.curPage<this.maxPage){
this.showLoading = true;
this.host_result={matches:[]}
this.curPage++;
var params = new URLSearchParams();
params.append("search",this.search);
@ -153,6 +155,8 @@ const app = new Vue({
},
prevPage(){
if(this.curPage>this.minPage){
this.showLoading = true;
this.host_result={matches:[]}
this.curPage--;
var params = new URLSearchParams();
params.append("search",this.search);