From 2a12ee759ba1c51140172b3198f462594ffe9190 Mon Sep 17 00:00:00 2001 From: Duncan Eddy Date: Thu, 30 May 2024 08:29:56 -0700 Subject: [PATCH] Fix: Fix updated bundled data command --- .github/workflows/update_bundled_data.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update_bundled_data.yml b/.github/workflows/update_bundled_data.yml index 3bff97a..7c0acf3 100644 --- a/.github/workflows/update_bundled_data.yml +++ b/.github/workflows/update_bundled_data.yml @@ -15,7 +15,7 @@ jobs: - uses: julia-actions/cache@v2 - uses: actions/checkout@v4 - name: Ensure packages are up-to-date and precompiled - run: julia --project -e "using Pkg; Pkg.precompile(); using SatelliteDynamics; Pkg.instantiate();" + run: julia --project -e "using Pkg; using SatelliteDynamics; Pkg.instantiate();" - name: Update package data run: julia --project ./scripts/update_data.jl - name: Commit and push changes