Skip to content

Commit ac5a566

Browse files
authored
Merge pull request #34 from purcell/nix-2.14-fixes
Incorporate upstream changes from cachix/install-nix-action
2 parents ddbe7a4 + c190b3f commit ac5a566

File tree

12 files changed

+21
-933
lines changed

12 files changed

+21
-933
lines changed

.dir-locals.el

Lines changed: 0 additions & 10 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,8 @@ jobs:
2626

2727
steps:
2828
- uses: actions/checkout@v2
29-
30-
- run: npm ci
31-
- run: npm run build
32-
- uses: ./
29+
- name: Setup Emacs
30+
uses: ./
3331
with:
3432
version: ${{ matrix.emacs_version }}
3533
- name: Check emacs version

__tests__/main.test.ts

Lines changed: 0 additions & 23 deletions
This file was deleted.

action.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,10 @@ inputs:
55
version:
66
description: 'The version of Emacs to install, e.g. "24.3", or "snapshot" for a recent development version.'
77
runs:
8-
using: 'node16'
9-
main: 'dist/index.js'
8+
using: 'composite'
9+
steps:
10+
- run: ${{ github.action_path }}/install.sh
11+
shell: bash
12+
env:
13+
INPUT_VERSION: ${{ inputs.version }}
14+
GITHUB_TOKEN: ${{ github.token }}

0 commit comments

Comments
 (0)