mirror of
https://github.com/jimeh/emacs-builds.git
synced 2026-02-19 02:46:44 +00:00
Improves a few things: - Use the free macos-14 runners for arm64 builds. They are not as fast the macos-13-xlarge runners used before, but they are free for public repositories, meaning we can start doing nightly arm64 builds. - Use different nix install and cache actions which are faster, and uses a single action cache key, which avoids cache rate limit errors which was slowing down cache create/restore times. - Generally refactor and tidy up various bits and pieces in workflows.
24 lines
540 B
YAML
24 lines
540 B
YAML
---
|
|
name: _update-casks
|
|
concurrency:
|
|
group: _update-casks
|
|
cancel-in-progress: false
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
os:
|
|
description: GitHub Actions runner OS
|
|
type: string
|
|
required: false
|
|
default: "ubuntu-latest"
|
|
|
|
jobs:
|
|
emacs-builds:
|
|
runs-on: ${{ inputs.os }}
|
|
steps:
|
|
- name: Trigger update casks workflow in homebrew tap
|
|
run: >-
|
|
gh workflow run --repo jimeh/homebrew-emacs-builds update-casks.yml
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.TAP_REPO_TOKEN }}
|