Skip to content

Commit 20580b2

Browse files
committed
Update the repo name
1 parent 24b4ac3 commit 20580b2

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

.github/workflows/release.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
name: Release
12
on:
23
push:
34
tags:

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Google Cloud Build Pipeline Visualizer
22

3-
[![build](https://github.com/RyanSiu1995/cloudbuild-visualizer/workflows/Go/badge.svg)](https://github.com/RyanSiu1995/cloudbuild-visualizer/workflows/Go/badge.svg)
3+
[![build](https://github.com/RyanSiu1995/gcb-visualizer/workflows/Go/badge.svg)](https://github.com/RyanSiu1995/gcb-visualizer/workflows/Go/badge.svg)
44

55
For the current version of Google cloud build, it supports the async process with the variable `waitFor`. With the growth of complexity of your pipeline, it will be hard to maintain the async flow. Unlike Jenkins and CircleCI, there is no visualizer for your pipeline. This application aims at visualize the pipeline and help the developers to debug their cloud build.
66

cmd/visualize.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package cmd
22

33
import (
44
"fmt"
5-
util "github.com/RyanSiu1995/cloudbuild-visualizer/internal/utils"
5+
util "github.com/RyanSiu1995/gcb-visualizer/internal/utils"
66
log "github.com/sirupsen/logrus"
77
"github.com/spf13/cobra"
88
"os"

gcb-visualizer.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package main
22

33
import (
44
"fmt"
5-
"github.com/RyanSiu1995/cloudbuild-visualizer/cmd"
5+
"github.com/RyanSiu1995/gcb-visualizer/cmd"
66
log "github.com/sirupsen/logrus"
77
"os"
88
)

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/RyanSiu1995/cloudbuild-visualizer
1+
module github.com/RyanSiu1995/gcb-visualizer
22

33
go 1.14
44

0 commit comments

Comments
 (0)