diff --git a/.github/workflows/SnoopCompile.yml b/.github/workflows/SnoopCompile.yml index f6e6b75c..a3aa47d2 100644 --- a/.github/workflows/SnoopCompile.yml +++ b/.github/workflows/SnoopCompile.yml @@ -40,7 +40,7 @@ jobs: - name: Install dependencies run: | julia --project -e 'using Pkg; Pkg.instantiate();' - julia -e 'using Pkg; Pkg.add( PackageSpec(name="SnoopCompileBot", version = "2") ); Pkg.develop(PackageSpec(; path=pwd())); using SnoopCompileBot; SnoopCompileBot.addtestdep();' + julia -e 'using Pkg; Pkg.add( PackageSpec(url="https://github.com/aminya/SnoopCompileBot.jl", rev = "master") ); Pkg.develop(PackageSpec(; path=pwd())); using SnoopCompileBot; SnoopCompileBot.addtestdep();' # TESTCMD @@ -73,7 +73,7 @@ jobs: uses: actions/download-artifact@v2 - name: SnoopCompileBot postprocess - run: julia -e 'using Pkg; Pkg.add( PackageSpec(name="SnoopCompileBot", version = "2") ); using SnoopCompileBot; SnoopCompileBot.postprocess();' + run: julia -e 'using Pkg; Pkg.add( PackageSpec(url="https://github.com/aminya/SnoopCompileBot.jl", rev = "master") ); using SnoopCompileBot; SnoopCompileBot.postprocess();' - name: Create Pull Request uses: peter-evans/create-pull-request@v3