Skip to content

Commit 79a1847

Browse files
committed
scope down to just macos support for now
1 parent 2f4bb0b commit 79a1847

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

.github/workflows/main.yml

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ jobs:
99
os:
1010
- ubuntu-latest
1111
- macos-latest
12-
- windows-latest
1312
version:
1413
- 1.29.0
1514
- latest

README.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ This will add the following executables to your `PATH`, making them available fo
99
- `dhall-to-yaml`
1010
- `json-to-dhall`
1111

12-
**Note:** Currently this only supports the `ubuntu-` runtimes for actions. See [TODO](#todo) below.
13-
1412
### Inputs
1513

1614
#### `version`
@@ -46,6 +44,6 @@ jobs:
4644
4745
### TODO
4846
49-
- [ ] Add platform validation on action to fail early if a non-ubuntu runner is used
50-
- [ ] Add support for the macOS runner
47+
- [x] Add platform validation on action to fail early if an unsupported runner is used
48+
- [x] Add support for the macOS runner
5149
- [ ] Add support for the Windows runner

src/action.js

-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@ const releasePatterns = () => {
1515
case 'darwin':
1616
platformSuffix = 'macos'
1717
break
18-
case 'win32':
19-
platformSuffix = 'windows'
20-
break
2118
default:
2219
core.setFailed(`Unknown or unsuppored platform: ${platform}`)
2320
return

0 commit comments

Comments
 (0)