Commit fecbfba 1 parent f58196a commit fecbfba Copy full SHA for fecbfba
File tree 5 files changed +18
-7
lines changed
5 files changed +18
-7
lines changed Original file line number Diff line number Diff line change 38
38
args : release --clean
39
39
env :
40
40
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
41
- TAP_GITHUB_TOKEN : ${{ secrets.TAP_GITHUB_TOKEN }}
41
+ TAP_GITHUB_TOKEN : ${{ secrets.TAP_GITHUB_TOKEN }}
42
+ TWITTER_CONSUMER_KEY : ${{ secrets.TWITTER_CONSUMER_KEY }}
43
+ TWITTER_CONSUMER_SECRET : ${{ secrets.TWITTER_CONSUMER_SECRET }}
44
+ TWITTER_ACCESS_TOKEN : ${{ secrets.TWITTER_ACCESS_TOKEN }}
45
+ TWITTER_ACCESS_TOKEN_SECRET : ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }}
Original file line number Diff line number Diff line change @@ -12,6 +12,13 @@ builds:
12
12
- env :
13
13
- CGO_ENABLED=0
14
14
- GO111MODULE=on
15
+ goos :
16
+ - linux
17
+ - darwin
18
+ - windows
19
+ goarch :
20
+ - amd64
21
+ - arm64
15
22
ldflags :
16
23
- -s -w
17
24
- -X "main.version={{.Version}}"
Original file line number Diff line number Diff line change 1
1
<template >
2
2
<MainLayouts >
3
3
<header >
4
- <h1 >Carts</h1 >
4
+ <h1 class = " pb-4 " >Carts</h1 >
5
5
</header >
6
6
7
- <div class =" mx-auto" v-if =" carts.length > 0" >
7
+ <div class =" mx-auto pb-16 " v-if =" carts.length > 0" >
8
8
<table >
9
9
<thead >
10
10
<tr >
Original file line number Diff line number Diff line change 11
11
</div >
12
12
13
13
<Form @submit =" onSubmit" v-slot =" { errors }" class =" mx-auto mb-0 mt-8 max-w-md space-y-4" >
14
- <FormInput v-model =" state.email" :error =" errors.email" id =" email" type =" email" rules =" required|email" title =" Email" ico =" at-symbol" />
15
- <FormInput v-model =" state.password" :error =" errors.password" id =" password" type =" password" rules =" required|min:6" title =" Password" ico =" finger-print" />
14
+ <FormInput v-model =" state.email" :error =" errors.email" id =" email" type =" email" rules =" required|email" title =" Email* " ico =" at-symbol" />
15
+ <FormInput v-model =" state.password" :error =" errors.password" id =" password" type =" password" rules =" required|min:6" title =" Password* " ico =" finger-print" />
16
16
<hr />
17
- <FormInput v-model =" state.domain" :error =" errors.domain" id =" domain" type =" text" rules =" required" title =" Domain" ico =" glob-alt" />
17
+ <FormInput v-model =" state.domain" :error =" errors.domain" id =" domain" type =" text" rules =" required" title =" Domain* " ico =" glob-alt" />
18
18
<FormInput v-model =" state.stripe_secret" :error =" errors.stripe_secret" id =" stripe_secret" type =" text" rules =" min:100" title =" Stripe secret key" ico =" key" />
19
19
20
20
<FormButton type =" submit" name =" Create my cart" color =" green" ico =" arrow-right" />
Original file line number Diff line number Diff line change 8
8
</div >
9
9
</header >
10
10
11
- <div class =" mx-auto" v-if =" pages.length > 0" >
11
+ <div class =" mx-auto pb-16 " v-if =" pages.length > 0" >
12
12
<table >
13
13
<thead >
14
14
<tr >
You can’t perform that action at this time.
0 commit comments