mirror of
https://github.com/jayateertha043/goshod.git
synced 2026-07-22 20:41:03 +00:00
Compare commits
8 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4285b83496 | ||
|
|
5a025b610a | ||
|
|
504a6b83ed | ||
|
|
a40eca7bc7 | ||
|
|
c783084fa4 | ||
|
|
bfa0ab68c4 | ||
|
|
dac8e5bf25 | ||
|
|
5eff4dc453 |
3 changed files with 6 additions and 29 deletions
15
.github/workflows/.goreleaser.yml
vendored
15
.github/workflows/.goreleaser.yml
vendored
|
|
@ -1,15 +0,0 @@
|
||||||
project_name: goshod
|
|
||||||
builds:
|
|
||||||
- env: [CGO_ENABLED=0]
|
|
||||||
goos:
|
|
||||||
- linux
|
|
||||||
- windows
|
|
||||||
- darwin
|
|
||||||
goarch:
|
|
||||||
- amd64
|
|
||||||
- arm64
|
|
||||||
- arm
|
|
||||||
- 386
|
|
||||||
id: "import_disqus_cli"
|
|
||||||
dir: .
|
|
||||||
main: .
|
|
||||||
16
.github/workflows/release.yml
vendored
16
.github/workflows/release.yml
vendored
|
|
@ -1,15 +1,8 @@
|
||||||
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:
|
||||||
|
|
@ -20,14 +13,9 @@ 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
|
||||||
|
|
@ -35,7 +23,7 @@ jobs:
|
||||||
# either 'goreleaser' (default) or 'goreleaser-pro'
|
# either 'goreleaser' (default) or 'goreleaser-pro'
|
||||||
distribution: goreleaser
|
distribution: goreleaser
|
||||||
version: latest
|
version: latest
|
||||||
args: release -f .goreleaser.yml --rm-dist
|
args: release --rm-dist
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
# Your GoReleaser Pro key, if you are using the 'goreleaser-pro' distribution
|
# Your GoReleaser Pro key, if you are using the 'goreleaser-pro' distribution
|
||||||
|
|
|
||||||
|
|
@ -123,6 +123,8 @@ 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);
|
||||||
|
|
@ -153,6 +155,8 @@ 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