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 54e0fa7 commit cf4a0d3Copy full SHA for cf4a0d3
.github/workflows/release.yml
@@ -26,6 +26,23 @@ jobs:
26
CGO_ENABLED=0 GOOS=darwin GOARCH=arm64 go build -ldflags="-s -w" -o search_arm64 .
27
lipo -create -output search search_amd64 search_arm64
28
rm -f search_amd64 search_arm64
29
+ - name: Upload workflow contents
30
+ uses: actions/upload-artifact@v4
31
+ with:
32
+ name: workflow-contents
33
+ path: |
34
+ .
35
+ !.git
36
+
37
+ package:
38
+ runs-on: ubuntu-latest
39
+ needs: build
40
+ steps:
41
+ - name: Download workflow contents
42
+ uses: actions/download-artifact@v4
43
44
45
+ path: .
46
# Store version number without `v`
47
- name: Write release version
48
run: |
0 commit comments