mirror of
https://gitea.com/jolheiser/sip
synced 2024-11-22 11:41:59 +01:00
Change to vanity URL (#37)
Fix YAML New changes, generate docs, and add Drone for main Signed-off-by: jolheiser <john.olheiser@gmail.com> Merge branch 'master' of gitea.com:jolheiser/sip into vanity Change to vanity URL Signed-off-by: jolheiser <john.olheiser@gmail.com> Co-authored-by: jolheiser <john.olheiser@gmail.com> Reviewed-on: https://gitea.com/jolheiser/sip/pulls/37
This commit is contained in:
parent
0bbe2e35ff
commit
5ecbcde518
10
.drone.yml
10
.drone.yml
@ -58,6 +58,16 @@ steps:
|
||||
- export PATH=$PATH:$GOPATH/bin
|
||||
- make release
|
||||
|
||||
- name: gitea
|
||||
pull: always
|
||||
image: jolheiser/drone-gitea-main:1
|
||||
settings:
|
||||
token:
|
||||
from_secret: gitea_token
|
||||
base: https://gitea.com
|
||||
files:
|
||||
- "dist/release/*"
|
||||
|
||||
---
|
||||
kind: pipeline
|
||||
name: release
|
||||
|
@ -4,8 +4,8 @@ import (
|
||||
"errors"
|
||||
"fmt"
|
||||
|
||||
"gitea.com/jolheiser/sip/config"
|
||||
"gitea.com/jolheiser/sip/flag"
|
||||
"go.jolheiser.com/sip/config"
|
||||
"go.jolheiser.com/sip/flag"
|
||||
|
||||
"code.gitea.io/sdk/gitea"
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
|
@ -1,7 +1,7 @@
|
||||
package cmd
|
||||
|
||||
import (
|
||||
"gitea.com/jolheiser/sip/config"
|
||||
"go.jolheiser.com/sip/config"
|
||||
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
"github.com/urfave/cli/v2"
|
||||
|
@ -7,10 +7,10 @@ import (
|
||||
"strconv"
|
||||
"strings"
|
||||
|
||||
"gitea.com/jolheiser/sip/csv"
|
||||
"gitea.com/jolheiser/sip/flag"
|
||||
"gitea.com/jolheiser/sip/markdown"
|
||||
"gitea.com/jolheiser/sip/sdk"
|
||||
"go.jolheiser.com/sip/csv"
|
||||
"go.jolheiser.com/sip/flag"
|
||||
"go.jolheiser.com/sip/markdown"
|
||||
"go.jolheiser.com/sip/sdk"
|
||||
|
||||
"code.gitea.io/sdk/gitea"
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
|
@ -3,8 +3,8 @@ package cmd
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"gitea.com/jolheiser/sip/flag"
|
||||
"gitea.com/jolheiser/sip/markdown"
|
||||
"go.jolheiser.com/sip/flag"
|
||||
"go.jolheiser.com/sip/markdown"
|
||||
|
||||
"code.gitea.io/sdk/gitea"
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
|
@ -6,7 +6,7 @@ import (
|
||||
"strconv"
|
||||
"strings"
|
||||
|
||||
"gitea.com/jolheiser/sip/flag"
|
||||
"go.jolheiser.com/sip/flag"
|
||||
|
||||
"github.com/skratchdot/open-golang/open"
|
||||
"github.com/urfave/cli/v2"
|
||||
|
@ -7,8 +7,8 @@ import (
|
||||
"os/exec"
|
||||
"strconv"
|
||||
|
||||
"gitea.com/jolheiser/sip/config"
|
||||
"gitea.com/jolheiser/sip/flag"
|
||||
"go.jolheiser.com/sip/config"
|
||||
"go.jolheiser.com/sip/flag"
|
||||
|
||||
"code.gitea.io/sdk/gitea"
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
|
@ -4,9 +4,9 @@ import (
|
||||
"fmt"
|
||||
"strings"
|
||||
|
||||
"gitea.com/jolheiser/sip/flag"
|
||||
"gitea.com/jolheiser/sip/git"
|
||||
"gitea.com/jolheiser/sip/markdown"
|
||||
"go.jolheiser.com/sip/flag"
|
||||
"go.jolheiser.com/sip/git"
|
||||
"go.jolheiser.com/sip/markdown"
|
||||
|
||||
"code.gitea.io/sdk/gitea"
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
|
@ -4,9 +4,9 @@ import (
|
||||
"fmt"
|
||||
"strconv"
|
||||
|
||||
"gitea.com/jolheiser/sip/flag"
|
||||
"gitea.com/jolheiser/sip/git"
|
||||
"gitea.com/jolheiser/sip/sdk"
|
||||
"go.jolheiser.com/sip/flag"
|
||||
"go.jolheiser.com/sip/git"
|
||||
"go.jolheiser.com/sip/sdk"
|
||||
|
||||
"code.gitea.io/sdk/gitea"
|
||||
"github.com/urfave/cli/v2"
|
||||
|
@ -4,9 +4,9 @@ import (
|
||||
"fmt"
|
||||
"os"
|
||||
|
||||
"gitea.com/jolheiser/sip/csv"
|
||||
"gitea.com/jolheiser/sip/markdown"
|
||||
"gitea.com/jolheiser/sip/sdk"
|
||||
"go.jolheiser.com/sip/csv"
|
||||
"go.jolheiser.com/sip/markdown"
|
||||
"go.jolheiser.com/sip/sdk"
|
||||
|
||||
"code.gitea.io/sdk/gitea"
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
|
@ -7,8 +7,8 @@ import (
|
||||
"strconv"
|
||||
"strings"
|
||||
|
||||
"gitea.com/jolheiser/sip/flag"
|
||||
"gitea.com/jolheiser/sip/sdk"
|
||||
"go.jolheiser.com/sip/flag"
|
||||
"go.jolheiser.com/sip/sdk"
|
||||
|
||||
"code.gitea.io/sdk/gitea"
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
|
@ -4,8 +4,8 @@ import (
|
||||
"fmt"
|
||||
"strconv"
|
||||
|
||||
"gitea.com/jolheiser/sip/flag"
|
||||
"gitea.com/jolheiser/sip/sdk"
|
||||
"go.jolheiser.com/sip/flag"
|
||||
"go.jolheiser.com/sip/sdk"
|
||||
|
||||
"code.gitea.io/sdk/gitea"
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
|
@ -3,8 +3,8 @@ package cmd
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"gitea.com/jolheiser/sip/flag"
|
||||
"gitea.com/jolheiser/sip/git"
|
||||
"go.jolheiser.com/sip/flag"
|
||||
"go.jolheiser.com/sip/git"
|
||||
|
||||
"code.gitea.io/sdk/gitea"
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
|
@ -3,8 +3,8 @@ package cmd
|
||||
import (
|
||||
"strconv"
|
||||
|
||||
"gitea.com/jolheiser/sip/flag"
|
||||
"gitea.com/jolheiser/sip/sdk"
|
||||
"go.jolheiser.com/sip/flag"
|
||||
"go.jolheiser.com/sip/sdk"
|
||||
|
||||
"code.gitea.io/sdk/gitea"
|
||||
"github.com/urfave/cli/v2"
|
||||
|
@ -1,7 +1,7 @@
|
||||
package cmd
|
||||
|
||||
import (
|
||||
"gitea.com/jolheiser/sip/config"
|
||||
"go.jolheiser.com/sip/config"
|
||||
|
||||
"github.com/urfave/cli/v2"
|
||||
"go.jolheiser.com/beaver"
|
||||
|
@ -3,8 +3,8 @@ package cmd
|
||||
import (
|
||||
"errors"
|
||||
|
||||
"gitea.com/jolheiser/sip/config"
|
||||
"gitea.com/jolheiser/sip/flag"
|
||||
"go.jolheiser.com/sip/config"
|
||||
"go.jolheiser.com/sip/flag"
|
||||
|
||||
"code.gitea.io/sdk/gitea"
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
|
@ -3,7 +3,7 @@ package cmd
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"gitea.com/jolheiser/sip/config"
|
||||
"go.jolheiser.com/sip/config"
|
||||
|
||||
"github.com/AlecAivazis/survey/v2"
|
||||
"github.com/urfave/cli/v2"
|
||||
|
2
docs.go
2
docs.go
@ -6,7 +6,7 @@ import (
|
||||
"os"
|
||||
"strings"
|
||||
|
||||
"gitea.com/jolheiser/sip/cmd"
|
||||
"go.jolheiser.com/sip/cmd"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
4
docs.md
4
docs.md
@ -112,6 +112,10 @@ Create a new release
|
||||
|
||||
Attach files to a release
|
||||
|
||||
#### remove, delete, rm
|
||||
|
||||
Remove attachments from a release
|
||||
|
||||
## open, o
|
||||
|
||||
Open a repository or issue/pull request
|
||||
|
@ -4,8 +4,8 @@ import (
|
||||
"fmt"
|
||||
"sync"
|
||||
|
||||
"gitea.com/jolheiser/sip/config"
|
||||
"gitea.com/jolheiser/sip/git"
|
||||
"go.jolheiser.com/sip/config"
|
||||
"go.jolheiser.com/sip/git"
|
||||
|
||||
"github.com/urfave/cli/v2"
|
||||
)
|
||||
|
2
go.mod
2
go.mod
@ -1,4 +1,4 @@
|
||||
module gitea.com/jolheiser/sip
|
||||
module go.jolheiser.com/sip
|
||||
|
||||
go 1.13
|
||||
|
||||
|
4
main.go
4
main.go
@ -3,8 +3,8 @@ package main
|
||||
import (
|
||||
"os"
|
||||
|
||||
"gitea.com/jolheiser/sip/cmd"
|
||||
"gitea.com/jolheiser/sip/config"
|
||||
"go.jolheiser.com/sip/cmd"
|
||||
"go.jolheiser.com/sip/config"
|
||||
|
||||
"go.jolheiser.com/beaver"
|
||||
)
|
||||
|
@ -3,7 +3,7 @@ package sdk
|
||||
import (
|
||||
"strings"
|
||||
|
||||
"gitea.com/jolheiser/sip/qualify"
|
||||
"go.jolheiser.com/sip/qualify"
|
||||
|
||||
"code.gitea.io/sdk/gitea"
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user