From fae323af7c7792a4672bf0ac9cdb6717a0948f22 Mon Sep 17 00:00:00 2001 From: t-bltg Date: Wed, 20 Oct 2021 13:47:07 +0200 Subject: [PATCH] Update SnoopCompile.yml --- .github/workflows/SnoopCompile.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/SnoopCompile.yml b/.github/workflows/SnoopCompile.yml index 01d73ee8..08673512 100644 --- a/.github/workflows/SnoopCompile.yml +++ b/.github/workflows/SnoopCompile.yml @@ -70,8 +70,9 @@ jobs: - name: CompileBot postprocess run: | + ls artifact ls - if ! grep -m1 -q 'format' src/precompile_includer.jl; then sed -i '1 i\#! format: off' src/precompile_includer.jl; fi + if ! grep -m1 -q 'format' artifact/src/precompile_includer.jl; then sed -i '1 i\#! format: off' artifact/src/precompile_includer.jl; fi julia -e 'using Pkg; Pkg.add( PackageSpec(name = "CompileBot", version = "1") ); using CompileBot; CompileBot.postprocess();' - name: Create Pull Request