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 a09d736 commit 93b5e19Copy full SHA for 93b5e19
1 file changed
.github/workflows/release.yml
@@ -6,8 +6,8 @@ on:
6
- created
7
8
jobs:
9
- build:
10
- name: Build the binaries
+ setup:
+ name: Setup the ENV
11
runs-on: ubuntu-latest
12
steps:
13
- name: Checkout
@@ -16,9 +16,17 @@ jobs:
16
- name: Xcaddy
17
run: go get github.com/caddyserver/xcaddy/cmd/xcaddy@latest
18
19
+ build:
20
+ name: Build the binary
21
+ needs: setup
22
+ steps:
23
- name: Build
24
run: xcaddy build --with github.com/golevi/cache-handler
25
26
+ upload:
27
+ name: Upload the binary
28
+ needs: build
29
30
- name: upload binary artifacts
31
uses: actions/upload-artifact@v2
32
with:
0 commit comments