aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build_binaries.yml23
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/build_binaries.yml b/.github/workflows/build_binaries.yml
new file mode 100644
index 00000000..40c9c423
--- /dev/null
+++ b/.github/workflows/build_binaries.yml
@@ -0,0 +1,23 @@
+name: Build Binaries
+on:
+ workflow_dispatch:
+jobs:
+ build:
+ name: Build
+ runs-on: ubuntu-latest
+ steps:
+ - name: Set up Golang
+ uses: actions/setup-go@v4
+ with:
+ go-version: "1.21"
+ - name: Checkout
+ uses: actions/checkout@v4
+ - name: Compile binaries
+ run: make build
+ - name: Upload binaries
+ uses: actions/upload-artifact@v3
+ with:
+ name: binaries
+ path: miniflux-*
+ if-no-files-found: error
+ retention-days: 5