From 3e27cb98d2a815a84545035ab4c053874f8633b0 Mon Sep 17 00:00:00 2001 From: Sascha Mann Date: Tue, 4 Aug 2020 16:36:20 +0200 Subject: [PATCH] Convert to composite action --- action.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 0c790f8..f9dcb73 100644 --- a/action.yml +++ b/action.yml @@ -1,6 +1,9 @@ name: 'Run Pkg.build' description: 'Run the build step in a Julia package' author: 'David Anthoff' + runs: - using: 'node12' - main: 'lib/main.js' + using: 'composite' + steps: + - run: julia --color=yes --project -e 'using Pkg; if VERSION >= v"1.1.0-rc1"; Pkg.build(verbose=true); else Pkg.build(); end' + shell: bash