Skip to content

Commit 7b971ee

Browse files
committed
chore(workflow-cli): change deis to drycc
1 parent 6846398 commit 7b971ee

File tree

129 files changed

+898
-898
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

129 files changed

+898
-898
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ jobs:
55
include:
66
- stage: Test and build
77
script:
8-
REVISION=${TRAVIS_COMMIT::7} make test && docker run -e BUILD_ARCH=amd64 -e REVISION=${TRAVIS_COMMIT::7} -e GIT_TAG=$(git describe --abbrev=0 --tags) -e DIST_DIR=/upload -v $(pwd)/_dist/:/upload --rm quay.io/deisci/workflow-cli-dev:${TRAVIS_COMMIT::7} make build-all
8+
REVISION=${TRAVIS_COMMIT::7} make test && docker run -e BUILD_ARCH=amd64 -e REVISION=${TRAVIS_COMMIT::7} -e GIT_TAG=$(git describe --abbrev=0 --tags) -e DIST_DIR=/upload -v $(pwd)/_dist/:/upload --rm quay.io/drycc/workflow-cli-dev:${TRAVIS_COMMIT::7} make build-all

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Contributing to Deis
1+
# Contributing to Drycc
22

3-
This project is part of Deis. You can find the latest contribution
4-
guidelines [in our documentation](https://docs.teamhephy.com/contributing/overview/).
3+
This project is part of Drycc. You can find the latest contribution
4+
guidelines [in our documentation](https://docs.drycc.com/contributing/overview/).

Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM hephy/go-dev:v0.22.0
1+
FROM drycc/go-dev:v0.22.0
22
# This Dockerfile is used to bundle the source and all dependencies into an image for testing.
33

44
RUN echo "deb http://packages.cloud.google.com/apt cloud-sdk-jessie main" \
@@ -15,13 +15,13 @@ ENV CGO_ENABLED=0
1515
ADD https://codecov.io/bash /usr/local/bin/codecov
1616
RUN chmod +x /usr/local/bin/codecov
1717

18-
COPY glide.yaml /go/src/github.com/teamhephy/workflow-cli/
19-
COPY glide.lock /go/src/github.com/teamhephy/workflow-cli/
18+
COPY glide.yaml /go/src/github.com/drycc/workflow-cli/
19+
COPY glide.lock /go/src/github.com/drycc/workflow-cli/
2020

21-
WORKDIR /go/src/github.com/teamhephy/workflow-cli
21+
WORKDIR /go/src/github.com/drycc/workflow-cli
2222

2323
RUN glide install --strip-vendor
2424

2525
COPY ./_scripts /usr/local/bin
2626

27-
COPY . /go/src/github.com/teamhephy/workflow-cli
27+
COPY . /go/src/github.com/drycc/workflow-cli

Jenkinsfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ def bootstrap = { String node ->
3434
}
3535

3636
// Disabling until we have a more sustainable Windows Jenkins Agent plan
37-
// See https://github.com/deis/jenkins-jobs/issues/351
37+
// See https://github.com/drycc/jenkins-jobs/issues/351
3838
// node(windows) {
3939
// def gopath = pwd() + "\\gopath"
4040
// env.GOPATH = gopath
41-
// def workdir = gopath + "\\src\\github.com\\deis\\workflow-cli"
41+
// def workdir = gopath + "\\src\\github.com\\drycc\\workflow-cli"
4242
//
4343
// dir(workdir) {
4444
// stage 'Checkout Windows'
@@ -72,14 +72,14 @@ node(linux) {
7272
}
7373
}
7474

75-
def test_image = "quay.io/deisci/workflow-cli-dev:${git_commit.take(7)}"
76-
def mutable_image = 'quay.io/deisci/workflow-cli-dev:latest'
75+
def test_image = "quay.io/drycc/workflow-cli-dev:${git_commit.take(7)}"
76+
def mutable_image = 'quay.io/drycc/workflow-cli-dev:latest'
7777

7878
node(linux) {
7979
stage 'Build and push test container'
8080
checkout scm
81-
def quayUsername = "deisci+jenkins"
82-
def quayEmail = "deis+jenkins@deis.com"
81+
def quayUsername = "drycc+jenkins"
82+
def quayEmail = "drycc+jenkins@drycc.com"
8383
withCredentials([[$class: 'StringBinding',
8484
credentialsId: 'c67dc0a1-c8c4-4568-a73d-53ad8530ceeb',
8585
variable: 'QUAY_PASSWORD']]) {
@@ -229,7 +229,7 @@ Commit: ${env.CHANGE_TITLE}<br/>
229229
<a href="${env.BUILD_URL}input/">Click here</a> to restart e2e.</p>
230230
</div>
231231
</html>
232-
""", from: 'jenkins@ci.deis.io', subject: 'Workflow CLI E2E Test Failure', to: env.SLACKEMAIL, mimeType: 'text/html'
232+
""", from: 'jenkins@ci.drycc.cc', subject: 'Workflow CLI E2E Test Failure', to: env.SLACKEMAIL, mimeType: 'text/html'
233233
}
234234
input "Retry the e2e tests?"
235235
}

Makefile

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# the filepath to this repository, relative to $GOPATH/src
2-
repo_path = github.com/teamhephy/workflow-cli
2+
repo_path = github.com/drycc/workflow-cli
33

44
HOST_OS := $(shell uname)
55
ifeq ($(HOST_OS),Darwin)
@@ -13,7 +13,7 @@ GIT_TAG ?= $(shell git describe --abbrev=0 --tags)
1313
REVISION ?= $(shell git rev-parse --short HEAD)
1414

1515
REGISTRY ?= quay.io/
16-
IMAGE_PREFIX ?= deisci
16+
IMAGE_PREFIX ?= drycc
1717
IMAGE := ${REGISTRY}${IMAGE_PREFIX}/workflow-cli-dev:${REVISION}
1818

1919
BUILD_OS ?=linux darwin windows
@@ -32,34 +32,34 @@ endef
3232

3333
build: build-test-image
3434
$(eval GO_LDFLAGS= -ldflags '-X ${repo_path}/version.Version=dev-${REVISION}')
35-
docker run --rm -e GOOS=${GOOS} -v ${CURDIR}/_dist:/out ${IMAGE} go build -a -installsuffix cgo ${GO_LDFLAGS} -o /out/deis .
36-
@$(call check-static-binary,_dist/deis)
37-
@echo "${GOOS} binary written to _dist/deis"
35+
docker run --rm -e GOOS=${GOOS} -v ${CURDIR}/_dist:/out ${IMAGE} go build -a -installsuffix cgo ${GO_LDFLAGS} -o /out/drycc .
36+
@$(call check-static-binary,_dist/drycc)
37+
@echo "${GOOS} binary written to _dist/drycc"
3838

3939
# This is supposed to be run within a docker container
4040
build-latest:
4141
$(eval GO_LDFLAGS = -ldflags '-X ${repo_path}/version.Version=${GIT_TAG}-${REVISION}')
42-
gox -verbose ${GO_LDFLAGS} -os="${BUILD_OS}" -arch="${BUILD_ARCH}" -output="${DIST_DIR}/deis-latest-{{.OS}}-{{.Arch}}" .
42+
gox -verbose ${GO_LDFLAGS} -os="${BUILD_OS}" -arch="${BUILD_ARCH}" -output="${DIST_DIR}/drycc-latest-{{.OS}}-{{.Arch}}" .
4343

4444
# This is supposed to be run within a docker container
4545
build-revision:
4646
$(eval GO_LDFLAGS = -ldflags '-X ${repo_path}/version.Version=${GIT_TAG}-${REVISION}')
47-
gox -verbose ${GO_LDFLAGS} -os="${BUILD_OS}" -arch="${BUILD_ARCH}" -output="${DIST_DIR}/${REVISION}/deis-${REVISION}-{{.OS}}-{{.Arch}}" .
47+
gox -verbose ${GO_LDFLAGS} -os="${BUILD_OS}" -arch="${BUILD_ARCH}" -output="${DIST_DIR}/${REVISION}/drycc-${REVISION}-{{.OS}}-{{.Arch}}" .
4848

4949
# This is supposed to be run within a docker container
5050
build-stable:
5151
$(eval GO_LDFLAGS = -ldflags '-X ${repo_path}/version.Version=${GIT_TAG}')
52-
gox -verbose ${GO_LDFLAGS} -os="${BUILD_OS}" -arch="${BUILD_ARCH}" -output="${DIST_DIR}/deis-stable-{{.OS}}-{{.Arch}}" .
52+
gox -verbose ${GO_LDFLAGS} -os="${BUILD_OS}" -arch="${BUILD_ARCH}" -output="${DIST_DIR}/drycc-stable-{{.OS}}-{{.Arch}}" .
5353

5454
# This is supposed to be run within a docker container
5555
build-tag:
5656
$(eval GO_LDFLAGS = -ldflags '-X ${repo_path}/version.Version=${GIT_TAG}')
57-
gox -verbose ${GO_LDFLAGS} -os="${BUILD_OS}" -arch="${BUILD_ARCH}" -output="${DIST_DIR}/${GIT_TAG}/deis-${GIT_TAG}-{{.OS}}-{{.Arch}}" .
57+
gox -verbose ${GO_LDFLAGS} -os="${BUILD_OS}" -arch="${BUILD_ARCH}" -output="${DIST_DIR}/${GIT_TAG}/drycc-${GIT_TAG}-{{.OS}}-{{.Arch}}" .
5858

5959
build-all: build-latest build-revision
6060

6161
install:
62-
cp deis $$GOPATH/bin
62+
cp drycc $$GOPATH/bin
6363

6464
test-style: build-test-image
6565
docker run --rm ${IMAGE} lint

README.md

Lines changed: 62 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,40 @@
1-
[![Build Status](https://travis-ci.org/teamhephy/workflow-cli.svg?branch=master)](https://travis-ci.org/teamhephy/workflow-cli)
1+
[![Build Status](https://travis-ci.org/drycc/workflow-cli.svg?branch=master)](https://travis-ci.org/drycc/workflow-cli)
22

3-
|![](https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Anchor_pictogram_yellow.svg/156px-Anchor_pictogram_yellow.svg.png) | Hephy Workflow is the open source fork of Deis Workflow.<br />Please [go here](https://www.teamhephy.com/) for more detail. |
3+
|![](https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Anchor_pictogram_yellow.svg/156px-Anchor_pictogram_yellow.svg.png) | Drycc Workflow is the open source fork of Drycc Workflow.<br />Please [go here](https://www.drycc.com/) for more detail. |
44
|---:|---|
5-
| 08/27/2018 | Team Hephy [blog][] comes online |
6-
| 08/20/2018 | Deis [#community slack][] goes dark |
7-
| 08/10/2018 | Hephy Workflow [v2.19.4][] fourth patch release |
8-
| 08/08/2018 | [Deis website][] goes dark, then redirects to Azure Kubernetes Service |
9-
| 08/01/2018 | Hephy Workflow [v2.19.3][] third patch release |
10-
| 07/17/2018 | Hephy Workflow [v2.19.2][] second patch release |
11-
| 07/12/2018 | Hephy Workflow [v2.19.1][] first patch release |
12-
| 06/29/2018 | Hephy Workflow [v2.19.0][] first release in the open source fork of Deis |
13-
| 06/16/2018 | Hephy Workflow [v2.19][] series is announced |
14-
| 03/01/2018 | End of Deis Workflow maintenance: critical patches no longer merged |
15-
| 12/11/2017 | Team Hephy [slack community][] invites first volunteers |
16-
| 09/07/2017 | Deis Workflow [v2.18][] final release before entering maintenance mode |
17-
| 09/06/2017 | Team Hephy [slack community][] comes online |
18-
19-
# Deis Client
20-
21-
[![Build Status](https://ci.deis.io/buildStatus/icon?job=Deis/workflow-cli/master)](https://ci.deis.io/job/Deis/job/workflow-cli/job/master/)
22-
[![Go Report Card](https://goreportcard.com/badge/github.com/teamhephy/workflow-cli)](https://goreportcard.com/report/github.com/teamhephy/workflow-cli)
23-
[![codebeat badge](https://codebeat.co/badges/05d314a8-ca61-4211-b69e-e7a3033662c8)](https://codebeat.co/projects/github-com-deis-workflow-cli)
24-
[![codecov](https://codecov.io/gh/deis/workflow-cli/branch/master/graph/badge.svg)](https://codecov.io/gh/deis/workflow-cli)
5+
| 08/27/2018 | Team Drycc [blog][] comes online |
6+
| 08/20/2018 | Drycc [#community slack][] goes dark |
7+
| 08/10/2018 | Drycc Workflow [v2.19.4][] fourth patch release |
8+
| 08/08/2018 | [Drycc website][] goes dark, then redirects to Azure Kubernetes Service |
9+
| 08/01/2018 | Drycc Workflow [v2.19.3][] third patch release |
10+
| 07/17/2018 | Drycc Workflow [v2.19.2][] second patch release |
11+
| 07/12/2018 | Drycc Workflow [v2.19.1][] first patch release |
12+
| 06/29/2018 | Drycc Workflow [v2.19.0][] first release in the open source fork of Drycc |
13+
| 06/16/2018 | Drycc Workflow [v2.19][] series is announced |
14+
| 03/01/2018 | End of Drycc Workflow maintenance: critical patches no longer merged |
15+
| 12/11/2017 | Team Drycc [slack community][] invites first volunteers |
16+
| 09/07/2017 | Drycc Workflow [v2.18][] final release before entering maintenance mode |
17+
| 09/06/2017 | Team Drycc [slack community][] comes online |
18+
19+
# Drycc Client
20+
21+
[![Build Status](https://ci.drycc.cc/buildStatus/icon?job=Drycc/workflow-cli/master)](https://ci.drycc.cc/job/Drycc/job/workflow-cli/job/master/)
22+
[![Go Report Card](https://goreportcard.com/badge/github.com/drycc/workflow-cli)](https://goreportcard.com/report/github.com/drycc/workflow-cli)
23+
[![codebeat badge](https://codebeat.co/badges/05d314a8-ca61-4211-b69e-e7a3033662c8)](https://codebeat.co/projects/github-com-drycc-workflow-cli)
24+
[![codecov](https://codecov.io/gh/drycc/workflow-cli/branch/master/graph/badge.svg)](https://codecov.io/gh/drycc/workflow-cli)
2525

2626
Download Links:
2727

28-
- [64 Bit Linux](https://storage.googleapis.com/workflow-cli-master/deis-latest-linux-amd64)
29-
- [32 Bit Linux](https://storage.googleapis.com/workflow-cli-master/deis-latest-linux-386)
30-
- [64 Bit Mac OS X](https://storage.googleapis.com/workflow-cli-master/deis-latest-darwin-amd64)
31-
- [32 Bit Max OS X](https://storage.googleapis.com/workflow-cli-master/deis-latest-darwin-386)
32-
- [64 Bit Windows](https://storage.googleapis.com/workflow-cli-master/deis-latest-windows-amd64.exe)
33-
- [32 Bit Windows](https://storage.googleapis.com/workflow-cli-master/deis-latest-windows-386.exe)
28+
- [64 Bit Linux](https://storage.googleapis.com/workflow-cli-master/drycc-latest-linux-amd64)
29+
- [32 Bit Linux](https://storage.googleapis.com/workflow-cli-master/drycc-latest-linux-386)
30+
- [64 Bit Mac OS X](https://storage.googleapis.com/workflow-cli-master/drycc-latest-darwin-amd64)
31+
- [32 Bit Max OS X](https://storage.googleapis.com/workflow-cli-master/drycc-latest-darwin-386)
32+
- [64 Bit Windows](https://storage.googleapis.com/workflow-cli-master/drycc-latest-windows-amd64.exe)
33+
- [32 Bit Windows](https://storage.googleapis.com/workflow-cli-master/drycc-latest-windows-386.exe)
3434

35-
`deis` is a command line utility used to interact with the [Deis](http://deis.io) open source PaaS.
35+
`drycc` is a command line utility used to interact with the [Drycc](http://drycc.cc) open source PaaS.
3636

37-
Please add any [issues](https://github.com/teamhephy/workflow-cli/issues) you find with this software to the [Deis Workflow CLI Project](https://github.com/teamhephy/workflow-cli).
37+
Please add any [issues](https://github.com/drycc/workflow-cli/issues) you find with this software to the [Drycc Workflow CLI Project](https://github.com/drycc/workflow-cli).
3838

3939
## Installation
4040

@@ -47,98 +47,98 @@ See the appropriate sub-section below for your system to download and install th
4747
Master:
4848

4949
```console
50-
curl -o deis https://storage.googleapis.com/workflow-cli-master/deis-latest-linux-amd64 && chmod +x deis
50+
curl -o drycc https://storage.googleapis.com/workflow-cli-master/drycc-latest-linux-amd64 && chmod +x drycc
5151
```
5252

5353
Latest stable release:
5454

5555
```
56-
curl -o deis https://storage.googleapis.com/workflow-cli-release/deis-stable-linux-amd64 && chmod +x deis
56+
curl -o drycc https://storage.googleapis.com/workflow-cli-release/drycc-stable-linux-amd64 && chmod +x drycc
5757
```
5858

5959
#### 32 Bit Linux
6060

6161
Master:
6262

6363
```console
64-
curl -o deis https://storage.googleapis.com/workflow-cli-master/deis-latest-linux-386 && chmod +x deis
64+
curl -o drycc https://storage.googleapis.com/workflow-cli-master/drycc-latest-linux-386 && chmod +x drycc
6565
```
6666

6767
Latest stable release:
6868

6969
```
70-
curl -o deis https://storage.googleapis.com/workflow-cli-release/deis-stable-linux-386 && chmod +x deis
70+
curl -o drycc https://storage.googleapis.com/workflow-cli-release/drycc-stable-linux-386 && chmod +x drycc
7171
```
7272

7373
#### 64 Bit Mac OS X
7474

7575
Master:
7676

7777
```console
78-
curl -o deis https://storage.googleapis.com/workflow-cli-master/deis-latest-darwin-amd64 && chmod +x deis
78+
curl -o drycc https://storage.googleapis.com/workflow-cli-master/drycc-latest-darwin-amd64 && chmod +x drycc
7979
```
8080

8181
Latest stable release:
8282

8383
```
84-
curl -o deis https://storage.googleapis.com/workflow-cli-release/deis-stable-darwin-amd64 && chmod +x deis
84+
curl -o drycc https://storage.googleapis.com/workflow-cli-release/drycc-stable-darwin-amd64 && chmod +x drycc
8585
```
8686

8787
#### 32 Bit Max OS X
8888

8989
Master:
9090

9191
```console
92-
curl -o deis https://storage.googleapis.com/workflow-cli-master/deis-latest-darwin-386 && chmod +x deis
92+
curl -o drycc https://storage.googleapis.com/workflow-cli-master/drycc-latest-darwin-386 && chmod +x drycc
9393
```
9494

9595
Latest stable release:
9696

9797
```
98-
curl -o deis https://storage.googleapis.com/workflow-cli-release/deis-stable-darwin-386 && chmod +x deis
98+
curl -o drycc https://storage.googleapis.com/workflow-cli-release/drycc-stable-darwin-386 && chmod +x drycc
9999
```
100100

101101
#### 64 Bit Windows
102102

103103
Master:
104104

105105
```console
106-
powershell -NoProfile -ExecutionPolicy Bypass -Command "(new-object net.webclient).DownloadFile('https://storage.googleapis.com/workflow-cli-master/deis-latest-windows-amd64.exe', 'deis.exe')"
106+
powershell -NoProfile -ExecutionPolicy Bypass -Command "(new-object net.webclient).DownloadFile('https://storage.googleapis.com/workflow-cli-master/drycc-latest-windows-amd64.exe', 'drycc.exe')"
107107
```
108108

109109
Latest stable release:
110110

111111
```
112-
powershell -NoProfile -ExecutionPolicy Bypass -Command "(new-object net.webclient).DownloadFile('https://storage.googleapis.com/workflow-cli-release/deis-stable-windows-amd64.exe', 'deis.exe')"
112+
powershell -NoProfile -ExecutionPolicy Bypass -Command "(new-object net.webclient).DownloadFile('https://storage.googleapis.com/workflow-cli-release/drycc-stable-windows-amd64.exe', 'drycc.exe')"
113113
```
114114

115115
#### 32 Bit Windows
116116

117117
Master:
118118

119119
```console
120-
powershell -NoProfile -ExecutionPolicy Bypass -Command "(new-object net.webclient).DownloadFile('https://storage.googleapis.com/workflow-cli-master/deis-latest-windows-386.exe', 'deis.exe')"
120+
powershell -NoProfile -ExecutionPolicy Bypass -Command "(new-object net.webclient).DownloadFile('https://storage.googleapis.com/workflow-cli-master/drycc-latest-windows-386.exe', 'drycc.exe')"
121121
```
122122

123123
Latest stable release:
124124

125125
```
126-
powershell -NoProfile -ExecutionPolicy Bypass -Command "(new-object net.webclient).DownloadFile('https://storage.googleapis.com/workflow-cli-release/deis-stable-windows-386.exe', 'deis.exe')"
126+
powershell -NoProfile -ExecutionPolicy Bypass -Command "(new-object net.webclient).DownloadFile('https://storage.googleapis.com/workflow-cli-release/drycc-stable-windows-386.exe', 'drycc.exe')"
127127
```
128128

129129

130-
After you execute the appropriate command for your system, you'll have a `deis` binary in the current directory.
130+
After you execute the appropriate command for your system, you'll have a `drycc` binary in the current directory.
131131

132132
Run the following to see the version:
133133

134134
```console
135-
$ ./deis --version
135+
$ ./drycc --version
136136
```
137137

138138
You can then move it anywhere in your path:
139139

140140
```console
141-
$ mv deis /usr/local/bin
141+
$ mv drycc /usr/local/bin
142142
```
143143

144144
### From Scratch on OS X and Linux
@@ -157,31 +157,31 @@ To compile the client from scratch, open PowerShell and execute the following co
157157
`.\make bootstrap` will fetch all required dependencies, while `.\make build` will compile and install
158158
the client in the current directory.
159159

160-
$ .\deis --version
160+
$ .\drycc --version
161161

162162
## Usage
163163

164-
Running `deis help` will give you a up to date list of `deis` commands.
165-
To learn more about a command run `deis help <command>`.
164+
Running `drycc help` will give you a up to date list of `drycc` commands.
165+
To learn more about a command run `drycc help <command>`.
166166

167167
## License
168168

169-
see [LICENSE](https://github.com/teamhephy/workflow-cli/blob/master/LICENSE)
169+
see [LICENSE](https://github.com/drycc/workflow-cli/blob/master/LICENSE)
170170

171-
[v2.18]: https://github.com/teamhephy/workflow/releases/tag/v2.18.0
171+
[v2.18]: https://github.com/drycc/workflow/releases/tag/v2.18.0
172172
[k8s-home]: http://kubernetes.io
173173
[install-k8s]: http://kubernetes.io/gettingstarted/
174174
[mkdocs]: http://www.mkdocs.org/
175-
[issues]: https://github.com/teamhephy/workflow/issues
176-
[prs]: https://github.com/teamhephy/workflow/pulls
177-
[Deis website]: http://deis.com/
178-
[blog]: https://blog.teamhephy.info/blog/
179-
[#community slack]: https://slack.deis.io/
180-
[slack community]: https://slack.teamhephy.com/
181-
[v2.18]: https://github.com/teamhephy/workflow/releases/tag/v2.18.0
182-
[v2.19]: https://web.teamhephy.com
175+
[issues]: https://github.com/drycc/workflow/issues
176+
[prs]: https://github.com/drycc/workflow/pulls
177+
[Drycc website]: http://drycc.com/
178+
[blog]: https://blog.drycc.info/blog/
179+
[#community slack]: https://slack.drycc.cc/
180+
[slack community]: https://slack.drycc.com/
181+
[v2.18]: https://github.com/drycc/workflow/releases/tag/v2.18.0
182+
[v2.19]: https://web.drycc.com
183183
[v2.19.0]: https://gist.github.com/Cryptophobia/24c204583b18b9fc74c629fb2b62dfa3/revisions
184-
[v2.19.1]: https://github.com/teamhephy/workflow/releases/tag/v2.19.1
185-
[v2.19.2]: https://github.com/teamhephy/workflow/releases/tag/v2.19.2
186-
[v2.19.3]: https://github.com/teamhephy/workflow/releases/tag/v2.19.3
187-
[v2.19.4]: https://github.com/teamhephy/workflow/releases/tag/v2.19.4
184+
[v2.19.1]: https://github.com/drycc/workflow/releases/tag/v2.19.1
185+
[v2.19.2]: https://github.com/drycc/workflow/releases/tag/v2.19.2
186+
[v2.19.3]: https://github.com/drycc/workflow/releases/tag/v2.19.3
187+
[v2.19.4]: https://github.com/drycc/workflow/releases/tag/v2.19.4

0 commit comments

Comments
 (0)