From 6bad3fec32adf05f6ec31c7d2f5cca8584e1ddea Mon Sep 17 00:00:00 2001 From: Francois Beutin Date: Thu, 18 Jul 2024 15:48:19 +0200 Subject: [PATCH] Add reusable build CI --- .github/workflows/release-build.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/release-build.yml diff --git a/.github/workflows/release-build.yml b/.github/workflows/release-build.yml new file mode 100644 index 0000000..ca465e5 --- /dev/null +++ b/.github/workflows/release-build.yml @@ -0,0 +1,18 @@ +--- +name: Release build + +on: + workflow_dispatch: + push: + branches: + - main + - master + - develop + pull_request: + +jobs: + build: + name: Build application using the reusable workflow + uses: LedgerHQ/ledger-app-workflows/.github/workflows/reusable_build.yml@v1 + with: + upload_app_binaries_artifact: "compiled_app_bindaries"