We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea1f881 commit 18cfe48Copy full SHA for 18cfe48
.github/workflows/release.yml
@@ -16,6 +16,8 @@ jobs:
16
uses: actions/checkout@v2
17
- name: Unshallow clone
18
run: git fetch --prune --unshallow
19
+ - name: Fetch git submodules
20
+ run: git submodule update --init --recursive
21
- name: Install Go
22
uses: actions/setup-go@v2
23
with:
.goreleaser.yml
@@ -4,9 +4,8 @@ project_name: tailscale-derper
4
5
before:
6
hooks:
7
- - rm -rf tailscale # Remove existing tailscale directory if it exists
8
- - git clone https://github.com/tailscale/tailscale.git
9
- - cd tailscale && go mod download
+ - go mod tidy
+ - git submodule update --init --recursive
10
11
builds:
12
- id: xdpderper
0 commit comments