From 079c17949cac98355b8eb4d1ae7caf904996ae6e Mon Sep 17 00:00:00 2001 From: Lucas Derraugh Date: Mon, 29 Dec 2025 22:11:25 -0500 Subject: [PATCH 1/2] Add regular build action check --- .github/workflows/build.yml | 41 +++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..f5c6c370 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,41 @@ +name: Build GitUp + +on: + push: + branches: + - master + pull_request: + branches: + - master + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + build: + name: Build GitUp Application + runs-on: macos-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + submodules: true + + - name: Select Xcode version + run: sudo xcode-select -s /Applications/Xcode.app/Contents/Developer + + - name: Show Xcode version + run: xcodebuild -version + + - name: Build GitUp + working-directory: GitUp + run: | + xcodebuild build \ + -scheme "Application" \ + -configuration "Release" \ + CODE_SIGN_IDENTITY="" \ + CODE_SIGNING_REQUIRED=NO \ + CODE_SIGNING_ALLOWED=NO + From 8a63ee201fc969a33a4ebeb5ea0e7144d71b390c Mon Sep 17 00:00:00 2001 From: Lucas Derraugh Date: Mon, 29 Dec 2025 22:20:34 -0500 Subject: [PATCH 2/2] Add badge for overall application build status --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index ca1a12af..10d80806 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ +[![GitUp](https://github.com/git-up/GitUp/actions/workflows/build.yml/badge.svg)](https://github.com/git-up/GitUp/actions/workflows/build.yml) [![GitUpKit Tests](https://github.com/git-up/GitUp/actions/workflows/test.yml/badge.svg)](https://github.com/git-up/GitUp/actions/workflows/test.yml) GitUp