Skip to content

Commit

Permalink
Update gen_macos_continuous.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
k2662 authored Aug 16, 2024
1 parent 7786e6a commit e0ddc05
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/gen_macos_continuous.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ on:

jobs:
build:
runs-on: "macos-latest"
runs-on: "macos-13"

env:
BUILD_REASON: "Schedule"
Expand Down Expand Up @@ -57,16 +57,16 @@ jobs:
run: "env CI=yes PATH=$PATH ./get-deps"
- name: "Build wezterm (Release mode Intel)"
shell: bash
run: "cargo build -p wezterm --release"
run: "cargo build --target x86_64-apple-darwin -p wezterm --release"
- name: "Build wezterm-gui (Release mode Intel)"
shell: bash
run: "cargo build -p wezterm-gui --release"
run: "cargo build --target x86_64-apple-darwin -p wezterm-gui --release"
- name: "Build wezterm-mux-server (Release mode Intel)"
shell: bash
run: "cargo build -p wezterm-mux-server --release"
run: "cargo build --target x86_64-apple-darwin -p wezterm-mux-server --release"
- name: "Build strip-ansi-escapes (Release mode Intel)"
shell: bash
run: "cargo build -p strip-ansi-escapes --release"
run: "cargo build --target x86_64-apple-darwin -p strip-ansi-escapes --release"
- name: "Package"
env:
MACOS_APPLEID: ${{ secrets.MACOS_APPLEID }}
Expand Down

0 comments on commit e0ddc05

Please sign in to comment.