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.1" have entirely different histories.
4 changed files with 1 additions and 36 deletions
30
.github/workflows/release.yml
vendored
30
.github/workflows/release.yml
vendored
|
|
@ -1,30 +0,0 @@
|
||||||
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 }}
|
|
||||||
|
|
@ -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