Convert to composite action

This commit is contained in:
Sascha Mann
2020-08-04 16:36:20 +02:00
parent f3f7df418e
commit 3e27cb98d2

View File

@@ -1,6 +1,9 @@
name: 'Run Pkg.build' name: 'Run Pkg.build'
description: 'Run the build step in a Julia package' description: 'Run the build step in a Julia package'
author: 'David Anthoff' author: 'David Anthoff'
runs: runs:
using: 'node12' using: 'composite'
main: 'lib/main.js' 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