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 c1ea916 commit 187140dCopy full SHA for 187140d
1 file changed
.github/workflows/ci.yml
@@ -38,3 +38,17 @@ jobs:
38
39
- name: Build
40
run: go build -o emd ./cmd/emd
41
+
42
+ - name: Upload build artifact (non-Windows)
43
+ if: runner.os != 'Windows'
44
+ uses: actions/upload-artifact@v4
45
+ with:
46
+ name: emd-${{ runner.os }}
47
+ path: emd
48
49
+ - name: Upload build artifact (Windows)
50
+ if: runner.os == 'Windows'
51
52
53
54
+ path: emd.exe
0 commit comments