mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 08:58:21 +00:00
support mac x86 release
This commit is contained in:
parent
23d6cbe0f2
commit
671c8416e2
3 changed files with 10 additions and 1 deletions
7
.github/workflows/cd.yml
vendored
7
.github/workflows/cd.yml
vendored
|
|
@ -74,6 +74,13 @@ jobs:
|
|||
env:
|
||||
GITUI_RELEASE: 1
|
||||
run: make release-mac
|
||||
- name: Build Release Mac x86
|
||||
if: matrix.os == 'macos-latest'
|
||||
env:
|
||||
GITUI_RELEASE: 1
|
||||
run: |
|
||||
rustup target add x86_64-apple-darwin
|
||||
make release-mac-x86
|
||||
- name: Build Release Linux
|
||||
if: matrix.os == 'ubuntu-latest'
|
||||
env:
|
||||
|
|
|
|||
|
|
@ -24,6 +24,7 @@ but this also allows us now to define colors in the common hex format:
|
|||
Checkout [THEMES.md](./THEMES.md) for more info.
|
||||
|
||||
### Added
|
||||
* support intel x86 apple build in nightlies and releases
|
||||
* support `BUILD_GIT_COMMIT_ID` enabling builds from `git archive` generated source tarballs or other outside a git repo [[@alerque](https://github.com/alerque)] ([#2187](https://github.com/extrawurst/gitui/pull/2187))
|
||||
|
||||
### Fixes
|
||||
|
|
|
|||
|
|
@ -204,7 +204,8 @@ All contain a single binary file
|
|||
|
||||
#### macOS
|
||||
|
||||
- gitui-mac.tar.gz (intel Mac, uses Rosetta on Apple silicon, single binary)
|
||||
- gitui-mac.tar.gz (arm64)
|
||||
- gitui-mac-x86.tar.gz (intel x86)
|
||||
|
||||
#### Windows
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue