We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 075b5fc commit a09d736Copy full SHA for a09d736
2 files changed
.github/workflows/go.yml
@@ -23,9 +23,3 @@ jobs:
23
24
- name: Test
25
run: go test -v ./...
26
-
27
- - name: xcaddy
28
- run: go get github.com/caddyserver/xcaddy/cmd/xcaddy@latest
29
30
- - name: xcaddy-build
31
- run: xcaddy build --with github.com/golevi/cache-handler
.github/workflows/release.yml
@@ -0,0 +1,26 @@
1
+name: release
2
+
3
+on:
4
+ release:
5
+ types:
6
+ - created
7
8
+jobs:
9
+ build:
10
+ name: Build the binaries
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout
14
+ uses: actions/checkout@v2
15
16
+ - name: Xcaddy
17
+ run: go get github.com/caddyserver/xcaddy/cmd/xcaddy@latest
18
19
+ - name: Build
20
+ run: xcaddy build --with github.com/golevi/cache-handler
21
22
+ - name: upload binary artifacts
+ uses: actions/upload-artifact@v2
+ with:
+ name: binaries
+ path: release/
0 commit comments