We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b0a69a commit f995fa4Copy full SHA for f995fa4
action.yml
@@ -6,6 +6,11 @@ branding:
6
icon: 'box'
7
color: 'gray-dark'
8
9
+inputs:
10
+ project:
11
+ description: 'Value passed to the --project flag. The default value is the repository root: "@."'
12
+ default: '@.'
13
+
14
runs:
15
using: 'composite'
16
steps:
@@ -26,5 +31,5 @@ runs:
26
31
# packages via `Pkg.test`.
27
32
JULIA_PKG_SERVER: ""
28
33
29
- - run: julia --color=yes --project -e 'using Pkg; if VERSION >= v"1.1.0-rc1"; Pkg.build(verbose=true); else Pkg.build(); end'
34
+ - run: julia --color=yes --project=${{ inputs.project }} -e 'using Pkg; if VERSION >= v"1.1.0-rc1"; Pkg.build(verbose=true); else Pkg.build(); end'
30
35
shell: bash
0 commit comments