You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-4
Original file line number
Diff line number
Diff line change
@@ -148,7 +148,7 @@ You can mix and match the libev and go servers and clients.
148
148
149
149
To run the tests and benchmarks, call:
150
150
```
151
-
make test
151
+
go run github.com/go-task/task/v3/cmd/task test
152
152
```
153
153
154
154
You can benchmark the cipher finding code with
@@ -165,11 +165,12 @@ We use [GoReleaser](https://goreleaser.com/) to build and upload binaries to our
165
165
Summary:
166
166
- Test the build locally:
167
167
```
168
-
make release-local
168
+
go run github.com/go-task/task/v3/cmd/task release-local
169
169
```
170
170
- Export an environment variable named `GITHUB_TOKEN` with a temporary repo-scoped GitHub token ([create one here](https://github.com/settings/tokens/new)):
171
171
```bash
172
-
export GITHUB_TOKEN=yournewtoken
172
+
read -s -p "Type your Github token:" GITHUB_TOKEN
173
+
export GITHUB_TOKEN
173
174
```
174
175
- Create a new tag and push it to GitHub e.g.:
175
176
```bash
@@ -178,7 +179,7 @@ Summary:
178
179
```
179
180
- Build and upload:
180
181
```bash
181
-
make release
182
+
go run github.com/go-task/task/v3/cmd/task release
182
183
```
183
184
- Go to https://github.com/Jigsaw-Code/outline-ss-server/releases, review and publish the release.
0 commit comments