mirror of
https://github.com/jayateertha043/goshod.git
synced 2026-07-23 04:51:03 +00:00
Compare commits
No commits in common. "main" and "v1.0.3" have entirely different histories.
3 changed files with 13 additions and 6 deletions
14
.github/workflows/release.yml
vendored
14
.github/workflows/release.yml
vendored
|
|
@ -1,8 +1,15 @@
|
||||||
name: goreleaser
|
name: goreleaser
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
|
||||||
push:
|
push:
|
||||||
|
# run only against tags
|
||||||
|
tags:
|
||||||
|
- '*'
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
# packages: write
|
||||||
|
# issues: write
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
goreleaser:
|
goreleaser:
|
||||||
|
|
@ -13,9 +20,14 @@ jobs:
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
-
|
||||||
|
name: Fetch all tags
|
||||||
|
run: git fetch --force --tags
|
||||||
-
|
-
|
||||||
name: Set up Go
|
name: Set up Go
|
||||||
uses: actions/setup-go@v2
|
uses: actions/setup-go@v2
|
||||||
|
with:
|
||||||
|
go-version: 1.18
|
||||||
-
|
-
|
||||||
name: Run GoReleaser
|
name: Run GoReleaser
|
||||||
uses: goreleaser/goreleaser-action@v2
|
uses: goreleaser/goreleaser-action@v2
|
||||||
|
|
|
||||||
|
|
@ -159,4 +159,3 @@ func printbanner() {
|
||||||
`
|
`
|
||||||
fmt.Println(banner)
|
fmt.Println(banner)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -123,8 +123,6 @@ const app = new Vue({
|
||||||
},
|
},
|
||||||
nextPage(){
|
nextPage(){
|
||||||
if(this.curPage<this.maxPage){
|
if(this.curPage<this.maxPage){
|
||||||
this.showLoading = true;
|
|
||||||
this.host_result={matches:[]}
|
|
||||||
this.curPage++;
|
this.curPage++;
|
||||||
var params = new URLSearchParams();
|
var params = new URLSearchParams();
|
||||||
params.append("search",this.search);
|
params.append("search",this.search);
|
||||||
|
|
@ -155,8 +153,6 @@ const app = new Vue({
|
||||||
},
|
},
|
||||||
prevPage(){
|
prevPage(){
|
||||||
if(this.curPage>this.minPage){
|
if(this.curPage>this.minPage){
|
||||||
this.showLoading = true;
|
|
||||||
this.host_result={matches:[]}
|
|
||||||
this.curPage--;
|
this.curPage--;
|
||||||
var params = new URLSearchParams();
|
var params = new URLSearchParams();
|
||||||
params.append("search",this.search);
|
params.append("search",this.search);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue