Skip to content

Commit af54e06

Browse files
feat: build for release
1 parent 28bea22 commit af54e06

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

action.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,15 @@ branding:
77
inputs:
88
ubuntu-graphviz-version:
99
description: |-
10-
Graphviz version on Ubuntu.
10+
graphviz version on Ubuntu.
1111
required: false
1212
ubuntu-libgraphvizdev-version:
1313
description: |-
1414
libgraphviz-dev version on Ubuntu.
1515
required: false
16-
macos-graphviz-version:
17-
description: |-
18-
Graphviz version on macOS.
19-
required: false
2016
windows-graphviz-version:
2117
description: |-
22-
Graphviz version on Windows.
18+
graphviz version on Windows.
2319
required: false
2420

2521
runs:

lib/GraphvizInstaller.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,10 @@ class GraphvizInstaller {
2323
}
2424
}
2525
async brewInstall() {
26-
const graphvizVersion = (0, core_1.getInput)('macos-graphviz-version');
2726
await (0, exec_1.exec)('brew', ['update']);
2827
await (0, exec_1.exec)('brew', [
2928
'install',
30-
graphvizVersion ? `graphviz@${graphvizVersion}` : 'graphviz',
29+
'graphviz',
3130
]);
3231
}
3332
async getAptInstall() {

0 commit comments

Comments
 (0)