Skip to content

Commit

Permalink
Add GitHub workflow to build binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
fguillot authored Nov 1, 2023
1 parent e3eaaea commit d8c8282
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build_binaries.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit d8c8282

Please sign in to comment.