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 f3f0c58 commit 6024255Copy full SHA for 6024255
.github/workflows/release.yaml
@@ -20,6 +20,8 @@ jobs:
20
name: Release
21
runs-on: ubuntu-latest
22
needs: generate
23
+ env:
24
+ ARTIFACTSDIR: /tmp/bpf
25
steps:
26
- name: Checkout
27
uses: actions/checkout@v4
@@ -30,7 +32,7 @@ jobs:
30
32
uses: actions/download-artifact@v4
31
33
with:
34
name: bpf
- path: internal/bpf
35
+ path: "${{ env.ARTIFACTSDIR }}"
36
37
# We need to do this because of:
38
# https://github.com/actions/checkout/issues/290 and its side-effects
.goreleaser.yml
@@ -6,8 +6,9 @@ project_name: exceed2go
6
7
version: 2
8
9
-gomod:
10
- proxy: true
+before:
+ hooks:
11
+ - sh -c "cp -v {{ .Env.ARTIFACTSDIR }}/* internal/bpf/"
12
13
builds:
14
- binary: exceed2go
0 commit comments