Skip to content

Commit

Permalink
Fix action for package registration.
Browse files Browse the repository at this point in the history
  • Loading branch information
ricboer0 committed Nov 19, 2024
1 parent e6c1be2 commit 78518d0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/register-julia-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Install LocalRegistry.jl
run: julia -e 'using Pkg; Pkg.add("LocalRegistry")'

# Register the package locally
# Register the package
- name: Register Package
env:
GITHUB_TOKEN: ${{ secrets.REGISTRY_PAT }}
Expand All @@ -33,7 +33,8 @@ jobs:
using LocalRegistry;
LocalRegistry.register(
package = "julia/PRISMAID",
registry = "https://github.com/open-and-sustainable/julia.git",
registry = nothing,
repo = "https://github.com/open-and-sustainable/julia.git",
commit = true,
push = true,
branch = "main"
Expand Down

0 comments on commit 78518d0

Please sign in to comment.