Add GitHub workflow to build binaries

This commit is contained in:
Frédéric Guillot 2023-11-01 21:04:32 +01:00 committed by GitHub
parent e3eaaea15a
commit d8c82829c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 23 additions and 0 deletions

23
.github/workflows/build_binaries.yml vendored Normal file
View File

@ -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