Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to include packages from packages registry of gitlab #1079

Open
mahadevan-karthi-dwp opened this issue Apr 4, 2024 · 0 comments
Open

Comments

@mahadevan-karthi-dwp
Copy link

Let us say, I push my melange build apks to gitlab registry pacakges

I want to include

contents:
  keyring:
    - https://packages.wolfi.dev/os/wolfi-signing.rsa.pub
  repositories:
    - https://packages.wolfi.dev/os
    - https://gitlab.com/mygroup/my-development/packages/.   <<==== my package registry url 
   packages:
    - my-super-awesome-pacakge 
    
Or 
want to send it as command line
```

         --keyring-append local-melange.rsa.pub \
        --repository-append https://gitlab.com/mygroup/my-development/packages/ \
        --keyring-append https://gitlab.com/mygroup/my-developmen/my-signing.rsa.pub \
            

How do I pass the credential ? 
currently I can login `

apko login -u "${CI_REGISTRY_USER}" -p "${CI_REGISTRY_PASSWORD}" "${CI_REGISTRY}"`
    
  which works. 
  
  will it able to get the packages as well ? 
  
  
  I could not reference it as artifacts path as like 
  

repositories:
- https://packages.wolfi.dev/os
- "$CI_PROJECT_DIR/packages"
packages:
- wolfi-base
- ca-certificates-bundle
- my-secdev-package

    
    
    or 
    
 - "@local packages"

packages:
- wolfi-base
- ca-certificates-bundle
- my-secdev-package@local

    
 or 
 
  - "./packages"

packages:
- wolfi-base
- ca-certificates-bundle
- my-secdev-package

    
        
     or 
  - "packages"

packages:
- wolfi-base
- ca-certificates-bundle
- my-secdev-package

    
    
    
  
  
  
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant