Skip to content

Commit

Permalink
Fix update bundled data github action.
Browse files Browse the repository at this point in the history
The Github Action to update the bundled package data did not work due
to the underlying package dependencies not being initiated on the
worker. This commit adds a step that attempts to properly initialize
the package.
  • Loading branch information
duncaneddy committed May 28, 2024
1 parent f6abcd9 commit 518b944
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/update_bundled_data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:
version: 1.10
- 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();"
- name: Update package data
run: julia --project ./scripts/update_data.jl
- name: Commit and push changes
Expand Down

0 comments on commit 518b944

Please sign in to comment.