Skip to content

Commit

Permalink
Attempt to fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
duncaneddy committed May 30, 2024
1 parent d8a7bba commit bc892d0
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/update_bundled_data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,14 @@ 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.instantiate(); using SatelliteDynamics;"
- name: Update Package Registry
run: julia -e 'using Pkg; Pkg.update();'
- name: Add SatelliteDynamics.jl
run: julia -e 'using Pkg; Pkg.add(PackageSpec(path="."));'
- name: Precompile Package
run: julia -e 'using Pkg; Pkg.precompile();'
- name: Update package data
run: julia --project ./scripts/update_data.jl
run: julia ./scripts/update_data.jl
- name: Commit and push changes
uses: EndBug/add-and-commit@v9
with:
Expand Down

0 comments on commit bc892d0

Please sign in to comment.