From d8c82829c44bd576144dd825b1d7373b1ee8fb88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Guillot?= Date: Wed, 1 Nov 2023 21:04:32 +0100 Subject: [PATCH] Add GitHub workflow to build binaries --- .github/workflows/build_binaries.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/build_binaries.yml 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