We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df9883b commit f5d0e6aCopy full SHA for f5d0e6a
3 files changed
.github/workflows/build-ui.yml
@@ -3,6 +3,8 @@ name: Build UI executables
3
on:
4
push:
5
pull_request:
6
+ release:
7
+ types: [published]
8
9
jobs:
10
build:
@@ -39,3 +41,11 @@ jobs:
39
41
with:
40
42
name: ok_computer_ui-${{ matrix.os }}
43
path: dist/*
44
+
45
+ - name: Upload binaries to GitHub Release
46
+ if: github.event_name == 'release'
47
+ uses: softprops/action-gh-release@v1
48
+ with:
49
+ files: dist/**
50
+ env:
51
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments