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