Skip to content

Commit

Permalink
Fixes CI
Browse files Browse the repository at this point in the history
  • Loading branch information
cadojo committed Oct 10, 2024
1 parent a505838 commit e1efb4a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 27 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/Register.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,9 @@ jobs:
strategy:
matrix:
group:
- EphemerisSourcesBase
- HorizonsAPI
- HorizonsEphemeris
- SPICEKernels
- SPICEBodies
- AstrodynamicalCalculations
- AstrodynamicalModels
- AstrodynamicalSolvers
steps:
- uses: peter-evans/commit-comment@v3
with:
Expand All @@ -30,6 +28,6 @@ jobs:
- uses: peter-evans/commit-comment@v3
with:
body: |
@JuliaRegistrator register"
@JuliaRegistrator register
This comment was generated with `commit-comment` and [`Register.yml`](/.github/workflows/Register.yml).
26 changes: 7 additions & 19 deletions .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,37 +28,25 @@ jobs:
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
runs-on: ubuntu-latest
steps:
- name: Tag EphemerisSourcesBase.jl
- name: Tag AstrodynamicalCalculations.jl
uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
ssh: ${{ secrets.DOCUMENTER_KEY }}
subdir: lib/EphemerisSourcesBase
- name: Tag HorizonsAPI.jl
subdir: lib/AstrodynamicalCalculations
- name: Tag AstrodynamicalModels.jl
uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
ssh: ${{ secrets.DOCUMENTER_KEY }}
subdir: lib/HorizonsAPI
- name: Tag HorizonsEphemeris.jl
subdir: lib/AstrodynamicalModels
- name: Tag AstrodynamicalSolvers.jl
uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
ssh: ${{ secrets.DOCUMENTER_KEY }}
subdir: lib/HorizonsEphemeris
- name: Tag SPICEKernels.jl
uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
ssh: ${{ secrets.DOCUMENTER_KEY }}
subdir: lib/SPICEKernels
- name: Tag SPICEBodies.jl
uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
ssh: ${{ secrets.DOCUMENTER_KEY }}
subdir: lib/SPICEBodies
- name: Tag EphemerisSources.jl
subdir: lib/AstrodynamicalSolvers
- name: Tag GeneralAstrodynamics.jl
uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ jobs:
${{ runner.os }}-
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
env:
GROUP: ${{ matrix.group }}
with:
project: lib/${{ matrix.group }}
- uses: julia-actions/julia-processcoverage@v1
with:
directories: lib/${{ matrix.group }}/src
Expand Down

4 comments on commit e1efb4a

@cadojo
Copy link
Collaborator Author

@cadojo cadojo commented on e1efb4a Oct 10, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register subdir="lib/AstrodynamicalModels"

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/116945

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a AstrodynamicalModels-v3.8.0 -m "<description of version>" e1efb4a9ad69f341f3b2323b39b60f597266a999
git push origin AstrodynamicalModels-v3.8.0

@cadojo
Copy link
Collaborator Author

@cadojo cadojo commented on e1efb4a Oct 10, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register subdir="lib/AstrodynamicalSolvers"

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/116946

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a AstrodynamicalSolvers-v1.0.0 -m "<description of version>" e1efb4a9ad69f341f3b2323b39b60f597266a999
git push origin AstrodynamicalSolvers-v1.0.0

Please sign in to comment.