let's try this

This commit is contained in:
Maciej 2024-08-15 19:00:37 +03:00
parent 15be90691f
commit 2f44d12c4c
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
6 changed files with 221 additions and 1 deletions

View file

@ -0,0 +1,13 @@
name: 'Set up Emacs'
description: 'Install a specific Emacs version for use in your workflow.'
author: 'Steve Purcell'
inputs:
version:
description: 'The version of Emacs to install, e.g. "24.3", or "snapshot" for a recent development version.'
runs:
using: 'composite'
steps:
- run: ${{ github.action_path }}/install.sh
shell: bash
env:
INPUT_VERSION: ${{ inputs.version }}