| 1234567891011121314151617181920212223242526272829303132 |
- name: Build Binaries
- permissions:
- contents: read
- on:
- workflow_dispatch:
- push:
- tags:
- - '[0-9]+.[0-9]+.[0-9]+'
- jobs:
- build:
- name: Build
- if: github.repository_owner == 'miniflux'
- runs-on: ubuntu-latest
- steps:
- - name: Checkout
- uses: actions/checkout@v6
- - name: Set up Golang
- uses: actions/setup-go@v6
- with:
- go-version: stable
- check-latest: true
- - name: Compile binaries
- env:
- CGO_ENABLED: 0
- run: make build
- - name: Upload binaries
- uses: actions/upload-artifact@v7
- with:
- name: binaries
- path: miniflux-*
- if-no-files-found: error
- retention-days: 5
|