mirror of
https://github.com/jimeh/emacs-builds.git
synced 2026-02-19 08:26:40 +00:00
fix(workflow): use same OS in all jobs
This commit is contained in:
8
.github/workflows/_prepare.yml
vendored
8
.github/workflows/_prepare.yml
vendored
@@ -3,6 +3,10 @@ name: _prepare
|
||||
on:
|
||||
workflow_call:
|
||||
inputs:
|
||||
os:
|
||||
description: GitHub Actions runner OS
|
||||
type: string
|
||||
required: true
|
||||
builder_ref:
|
||||
description: Git ref to checkout of build-emacs-for-macos
|
||||
required: false
|
||||
@@ -15,9 +19,7 @@ on:
|
||||
|
||||
jobs:
|
||||
emacs-builder:
|
||||
# Use oldest version of macOS to ensure emacs-bulder binary is compatible
|
||||
# with later versions of macOS.
|
||||
runs-on: macos-11
|
||||
runs-on: ${{ inputs.os }}
|
||||
steps:
|
||||
- name: Checkout build-emacs-for-macos repo
|
||||
uses: actions/checkout@v3
|
||||
|
||||
Reference in New Issue
Block a user