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 9530a4f commit 3eb3162Copy full SHA for 3eb3162
.github/workflows/go.yml
@@ -26,7 +26,9 @@ jobs:
26
- os: openbsd
27
arch: amd64
28
29
+ name: ${{ matrix.os }}-${{ matrix.arch }}
30
runs-on: ubuntu-latest
31
+
32
steps:
33
- uses: actions/checkout@v4
34
@@ -41,8 +43,9 @@ jobs:
41
43
GOOS: ${{ matrix.os }}
42
44
GOARCH: ${{ matrix.arch }}
45
CGO_ENABLED: 0
- - name: dbg
- run: |
46
- find . -type f -name 'qtv-go'
47
- file qtv-go
48
- du -sh qtv-go
+ - uses: actions/upload-artifact@v4
+ with:
49
+ name: "qtv-${{ matrix.os }}-${{ matrix.arch }}"
50
+ path: |
51
+ qtv-go*
0 commit comments